azure-native.app.ContainerAppsSourceControl
Explore with Pulumi AI
Container App SourceControl. API Version: 2022-03-01.
Example Usage
Create or Update Container App SourceControl
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var containerAppsSourceControl = new AzureNative.App.ContainerAppsSourceControl("containerAppsSourceControl", new()
{
Branch = "master",
ContainerAppName = "testcanadacentral",
GithubActionConfiguration = new AzureNative.App.Inputs.GithubActionConfigurationArgs
{
AzureCredentials = new AzureNative.App.Inputs.AzureCredentialsArgs
{
ClientId = "<clientid>",
ClientSecret = "<clientsecret>",
TenantId = "<tenantid>",
},
ContextPath = "./",
Image = "image/tag",
RegistryInfo = new AzureNative.App.Inputs.RegistryInfoArgs
{
RegistryPassword = "<registrypassword>",
RegistryUrl = "xwang971reg.azurecr.io",
RegistryUserName = "xwang971reg",
},
},
RepoUrl = "https://github.com/xwang971/ghatest",
ResourceGroupName = "workerapps-rg-xj",
SourceControlName = "current",
});
});
package main
import (
app "github.com/pulumi/pulumi-azure-native-sdk/app"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := app.NewContainerAppsSourceControl(ctx, "containerAppsSourceControl", &app.ContainerAppsSourceControlArgs{
Branch: pulumi.String("master"),
ContainerAppName: pulumi.String("testcanadacentral"),
GithubActionConfiguration: app.GithubActionConfigurationResponse{
AzureCredentials: &app.AzureCredentialsArgs{
ClientId: pulumi.String("<clientid>"),
ClientSecret: pulumi.String("<clientsecret>"),
TenantId: pulumi.String("<tenantid>"),
},
ContextPath: pulumi.String("./"),
Image: pulumi.String("image/tag"),
RegistryInfo: &app.RegistryInfoArgs{
RegistryPassword: pulumi.String("<registrypassword>"),
RegistryUrl: pulumi.String("xwang971reg.azurecr.io"),
RegistryUserName: pulumi.String("xwang971reg"),
},
},
RepoUrl: pulumi.String("https://github.com/xwang971/ghatest"),
ResourceGroupName: pulumi.String("workerapps-rg-xj"),
SourceControlName: pulumi.String("current"),
})
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.ContainerAppsSourceControl;
import com.pulumi.azurenative.app.ContainerAppsSourceControlArgs;
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 containerAppsSourceControl = new ContainerAppsSourceControl("containerAppsSourceControl", ContainerAppsSourceControlArgs.builder()
.branch("master")
.containerAppName("testcanadacentral")
.githubActionConfiguration(Map.ofEntries(
Map.entry("azureCredentials", Map.ofEntries(
Map.entry("clientId", "<clientid>"),
Map.entry("clientSecret", "<clientsecret>"),
Map.entry("tenantId", "<tenantid>")
)),
Map.entry("contextPath", "./"),
Map.entry("image", "image/tag"),
Map.entry("registryInfo", Map.ofEntries(
Map.entry("registryPassword", "<registrypassword>"),
Map.entry("registryUrl", "xwang971reg.azurecr.io"),
Map.entry("registryUserName", "xwang971reg")
))
))
.repoUrl("https://github.com/xwang971/ghatest")
.resourceGroupName("workerapps-rg-xj")
.sourceControlName("current")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
container_apps_source_control = azure_native.app.ContainerAppsSourceControl("containerAppsSourceControl",
branch="master",
container_app_name="testcanadacentral",
github_action_configuration=azure_native.app.GithubActionConfigurationResponseArgs(
azure_credentials=azure_native.app.AzureCredentialsArgs(
client_id="<clientid>",
client_secret="<clientsecret>",
tenant_id="<tenantid>",
),
context_path="./",
image="image/tag",
registry_info=azure_native.app.RegistryInfoArgs(
registry_password="<registrypassword>",
registry_url="xwang971reg.azurecr.io",
registry_user_name="xwang971reg",
),
),
repo_url="https://github.com/xwang971/ghatest",
resource_group_name="workerapps-rg-xj",
source_control_name="current")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const containerAppsSourceControl = new azure_native.app.ContainerAppsSourceControl("containerAppsSourceControl", {
branch: "master",
containerAppName: "testcanadacentral",
githubActionConfiguration: {
azureCredentials: {
clientId: "<clientid>",
clientSecret: "<clientsecret>",
tenantId: "<tenantid>",
},
contextPath: "./",
image: "image/tag",
registryInfo: {
registryPassword: "<registrypassword>",
registryUrl: "xwang971reg.azurecr.io",
registryUserName: "xwang971reg",
},
},
repoUrl: "https://github.com/xwang971/ghatest",
resourceGroupName: "workerapps-rg-xj",
sourceControlName: "current",
});
resources:
containerAppsSourceControl:
type: azure-native:app:ContainerAppsSourceControl
properties:
branch: master
containerAppName: testcanadacentral
githubActionConfiguration:
azureCredentials:
clientId: <clientid>
clientSecret: <clientsecret>
tenantId: <tenantid>
contextPath: ./
image: image/tag
registryInfo:
registryPassword: <registrypassword>
registryUrl: xwang971reg.azurecr.io
registryUserName: xwang971reg
repoUrl: https://github.com/xwang971/ghatest
resourceGroupName: workerapps-rg-xj
sourceControlName: current
Create ContainerAppsSourceControl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ContainerAppsSourceControl(name: string, args: ContainerAppsSourceControlArgs, opts?: CustomResourceOptions);
@overload
def ContainerAppsSourceControl(resource_name: str,
args: ContainerAppsSourceControlArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ContainerAppsSourceControl(resource_name: str,
opts: Optional[ResourceOptions] = None,
container_app_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
branch: Optional[str] = None,
github_action_configuration: Optional[GithubActionConfigurationArgs] = None,
repo_url: Optional[str] = None,
source_control_name: Optional[str] = None)
func NewContainerAppsSourceControl(ctx *Context, name string, args ContainerAppsSourceControlArgs, opts ...ResourceOption) (*ContainerAppsSourceControl, error)
public ContainerAppsSourceControl(string name, ContainerAppsSourceControlArgs args, CustomResourceOptions? opts = null)
public ContainerAppsSourceControl(String name, ContainerAppsSourceControlArgs args)
public ContainerAppsSourceControl(String name, ContainerAppsSourceControlArgs args, CustomResourceOptions options)
type: azure-native:app:ContainerAppsSourceControl
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 ContainerAppsSourceControlArgs
- 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 ContainerAppsSourceControlArgs
- 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 ContainerAppsSourceControlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContainerAppsSourceControlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ContainerAppsSourceControlArgs
- 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 containerAppsSourceControlResource = new AzureNative.App.ContainerAppsSourceControl("containerAppsSourceControlResource", new()
{
ContainerAppName = "string",
ResourceGroupName = "string",
Branch = "string",
GithubActionConfiguration =
{
{ "azureCredentials",
{
{ "clientId", "string" },
{ "clientSecret", "string" },
{ "subscriptionId", "string" },
{ "tenantId", "string" },
} },
{ "contextPath", "string" },
{ "image", "string" },
{ "os", "string" },
{ "publishType", "string" },
{ "registryInfo",
{
{ "registryPassword", "string" },
{ "registryUrl", "string" },
{ "registryUserName", "string" },
} },
{ "runtimeStack", "string" },
{ "runtimeVersion", "string" },
},
RepoUrl = "string",
SourceControlName = "string",
});
example, err := app.NewContainerAppsSourceControl(ctx, "containerAppsSourceControlResource", &app.ContainerAppsSourceControlArgs{
ContainerAppName: "string",
ResourceGroupName: "string",
Branch: "string",
GithubActionConfiguration: map[string]interface{}{
"azureCredentials": map[string]interface{}{
"clientId": "string",
"clientSecret": "string",
"subscriptionId": "string",
"tenantId": "string",
},
"contextPath": "string",
"image": "string",
"os": "string",
"publishType": "string",
"registryInfo": map[string]interface{}{
"registryPassword": "string",
"registryUrl": "string",
"registryUserName": "string",
},
"runtimeStack": "string",
"runtimeVersion": "string",
},
RepoUrl: "string",
SourceControlName: "string",
})
var containerAppsSourceControlResource = new ContainerAppsSourceControl("containerAppsSourceControlResource", ContainerAppsSourceControlArgs.builder()
.containerAppName("string")
.resourceGroupName("string")
.branch("string")
.githubActionConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.repoUrl("string")
.sourceControlName("string")
.build());
container_apps_source_control_resource = azure_native.app.ContainerAppsSourceControl("containerAppsSourceControlResource",
container_app_name=string,
resource_group_name=string,
branch=string,
github_action_configuration={
azureCredentials: {
clientId: string,
clientSecret: string,
subscriptionId: string,
tenantId: string,
},
contextPath: string,
image: string,
os: string,
publishType: string,
registryInfo: {
registryPassword: string,
registryUrl: string,
registryUserName: string,
},
runtimeStack: string,
runtimeVersion: string,
},
repo_url=string,
source_control_name=string)
const containerAppsSourceControlResource = new azure_native.app.ContainerAppsSourceControl("containerAppsSourceControlResource", {
containerAppName: "string",
resourceGroupName: "string",
branch: "string",
githubActionConfiguration: {
azureCredentials: {
clientId: "string",
clientSecret: "string",
subscriptionId: "string",
tenantId: "string",
},
contextPath: "string",
image: "string",
os: "string",
publishType: "string",
registryInfo: {
registryPassword: "string",
registryUrl: "string",
registryUserName: "string",
},
runtimeStack: "string",
runtimeVersion: "string",
},
repoUrl: "string",
sourceControlName: "string",
});
type: azure-native:app:ContainerAppsSourceControl
properties:
branch: string
containerAppName: string
githubActionConfiguration:
azureCredentials:
clientId: string
clientSecret: string
subscriptionId: string
tenantId: string
contextPath: string
image: string
os: string
publishType: string
registryInfo:
registryPassword: string
registryUrl: string
registryUserName: string
runtimeStack: string
runtimeVersion: string
repoUrl: string
resourceGroupName: string
sourceControlName: string
ContainerAppsSourceControl 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 ContainerAppsSourceControl resource accepts the following input properties:
- Container
App stringName - Name of the Container App.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Branch string
- The branch which will trigger the auto deployment
- Github
Action Pulumi.Configuration Azure Native. App. Inputs. Github Action Configuration - Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time
- Repo
Url string - The repo url which will be integrated to ContainerApp.
- Source
Control stringName - Name of the Container App SourceControl.
- Container
App stringName - Name of the Container App.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Branch string
- The branch which will trigger the auto deployment
- Github
Action GithubConfiguration Action Configuration Args - Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time
- Repo
Url string - The repo url which will be integrated to ContainerApp.
- Source
Control stringName - Name of the Container App SourceControl.
- container
App StringName - Name of the Container App.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- branch String
- The branch which will trigger the auto deployment
- github
Action GithubConfiguration Action Configuration - Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time
- repo
Url String - The repo url which will be integrated to ContainerApp.
- source
Control StringName - Name of the Container App SourceControl.
- container
App stringName - Name of the Container App.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- branch string
- The branch which will trigger the auto deployment
- github
Action GithubConfiguration Action Configuration - Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time
- repo
Url string - The repo url which will be integrated to ContainerApp.
- source
Control stringName - Name of the Container App SourceControl.
- container_
app_ strname - Name of the Container App.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- branch str
- The branch which will trigger the auto deployment
- github_
action_ Githubconfiguration Action Configuration Args - Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time
- repo_
url str - The repo url which will be integrated to ContainerApp.
- source_
control_ strname - Name of the Container App SourceControl.
- container
App StringName - Name of the Container App.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- branch String
- The branch which will trigger the auto deployment
- github
Action Property MapConfiguration - Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time
- repo
Url String - The repo url which will be integrated to ContainerApp.
- source
Control StringName - Name of the Container App SourceControl.
Outputs
All input properties are implicitly available as output properties. Additionally, the ContainerAppsSourceControl resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Operation
State string - Current provisioning State of the operation
- 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Operation
State string - Current provisioning State of the operation
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- operation
State String - Current provisioning State of the operation
- 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- operation
State string - Current provisioning State of the operation
- 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"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- operation_
state str - Current provisioning State of the operation
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- operation
State String - Current provisioning State of the operation
- 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
AzureCredentials, AzureCredentialsArgs
- Client
Id string - Client Id.
- Client
Secret string - Client Secret.
- Subscription
Id string - Subscription Id.
- Tenant
Id string - Tenant Id.
- Client
Id string - Client Id.
- Client
Secret string - Client Secret.
- Subscription
Id string - Subscription Id.
- Tenant
Id string - Tenant Id.
- client
Id String - Client Id.
- client
Secret String - Client Secret.
- subscription
Id String - Subscription Id.
- tenant
Id String - Tenant Id.
- client
Id string - Client Id.
- client
Secret string - Client Secret.
- subscription
Id string - Subscription Id.
- tenant
Id string - Tenant Id.
- client_
id str - Client Id.
- client_
secret str - Client Secret.
- subscription_
id str - Subscription Id.
- tenant_
id str - Tenant Id.
- client
Id String - Client Id.
- client
Secret String - Client Secret.
- subscription
Id String - Subscription Id.
- tenant
Id String - Tenant Id.
AzureCredentialsResponse, AzureCredentialsResponseArgs
- Subscription
Id string - Subscription Id.
- Subscription
Id string - Subscription Id.
- subscription
Id String - Subscription Id.
- subscription
Id string - Subscription Id.
- subscription_
id str - Subscription Id.
- subscription
Id String - Subscription Id.
GithubActionConfiguration, GithubActionConfigurationArgs
- Azure
Credentials Pulumi.Azure Native. App. Inputs. Azure Credentials - AzureCredentials configurations.
- Context
Path string - Context path
- Image string
- Image name
- Os string
- Operation system
- Publish
Type string - Code or Image
- Registry
Info Pulumi.Azure Native. App. Inputs. Registry Info - Registry configurations.
- Runtime
Stack string - Runtime stack
- Runtime
Version string - Runtime version
- Azure
Credentials AzureCredentials - AzureCredentials configurations.
- Context
Path string - Context path
- Image string
- Image name
- Os string
- Operation system
- Publish
Type string - Code or Image
- Registry
Info RegistryInfo - Registry configurations.
- Runtime
Stack string - Runtime stack
- Runtime
Version string - Runtime version
- azure
Credentials AzureCredentials - AzureCredentials configurations.
- context
Path String - Context path
- image String
- Image name
- os String
- Operation system
- publish
Type String - Code or Image
- registry
Info RegistryInfo - Registry configurations.
- runtime
Stack String - Runtime stack
- runtime
Version String - Runtime version
- azure
Credentials AzureCredentials - AzureCredentials configurations.
- context
Path string - Context path
- image string
- Image name
- os string
- Operation system
- publish
Type string - Code or Image
- registry
Info RegistryInfo - Registry configurations.
- runtime
Stack string - Runtime stack
- runtime
Version string - Runtime version
- azure_
credentials AzureCredentials - AzureCredentials configurations.
- context_
path str - Context path
- image str
- Image name
- os str
- Operation system
- publish_
type str - Code or Image
- registry_
info RegistryInfo - Registry configurations.
- runtime_
stack str - Runtime stack
- runtime_
version str - Runtime version
- azure
Credentials Property Map - AzureCredentials configurations.
- context
Path String - Context path
- image String
- Image name
- os String
- Operation system
- publish
Type String - Code or Image
- registry
Info Property Map - Registry configurations.
- runtime
Stack String - Runtime stack
- runtime
Version String - Runtime version
GithubActionConfigurationResponse, GithubActionConfigurationResponseArgs
- Azure
Credentials Pulumi.Azure Native. App. Inputs. Azure Credentials Response - AzureCredentials configurations.
- Context
Path string - Context path
- Image string
- Image name
- Os string
- Operation system
- Publish
Type string - Code or Image
- Registry
Info Pulumi.Azure Native. App. Inputs. Registry Info Response - Registry configurations.
- Runtime
Stack string - Runtime stack
- Runtime
Version string - Runtime version
- Azure
Credentials AzureCredentials Response - AzureCredentials configurations.
- Context
Path string - Context path
- Image string
- Image name
- Os string
- Operation system
- Publish
Type string - Code or Image
- Registry
Info RegistryInfo Response - Registry configurations.
- Runtime
Stack string - Runtime stack
- Runtime
Version string - Runtime version
- azure
Credentials AzureCredentials Response - AzureCredentials configurations.
- context
Path String - Context path
- image String
- Image name
- os String
- Operation system
- publish
Type String - Code or Image
- registry
Info RegistryInfo Response - Registry configurations.
- runtime
Stack String - Runtime stack
- runtime
Version String - Runtime version
- azure
Credentials AzureCredentials Response - AzureCredentials configurations.
- context
Path string - Context path
- image string
- Image name
- os string
- Operation system
- publish
Type string - Code or Image
- registry
Info RegistryInfo Response - Registry configurations.
- runtime
Stack string - Runtime stack
- runtime
Version string - Runtime version
- azure_
credentials AzureCredentials Response - AzureCredentials configurations.
- context_
path str - Context path
- image str
- Image name
- os str
- Operation system
- publish_
type str - Code or Image
- registry_
info RegistryInfo Response - Registry configurations.
- runtime_
stack str - Runtime stack
- runtime_
version str - Runtime version
- azure
Credentials Property Map - AzureCredentials configurations.
- context
Path String - Context path
- image String
- Image name
- os String
- Operation system
- publish
Type String - Code or Image
- registry
Info Property Map - Registry configurations.
- runtime
Stack String - Runtime stack
- runtime
Version String - Runtime version
RegistryInfo, RegistryInfoArgs
- Registry
Password string - registry secret.
- Registry
Url string - registry server Url.
- Registry
User stringName - registry username.
- Registry
Password string - registry secret.
- Registry
Url string - registry server Url.
- Registry
User stringName - registry username.
- registry
Password String - registry secret.
- registry
Url String - registry server Url.
- registry
User StringName - registry username.
- registry
Password string - registry secret.
- registry
Url string - registry server Url.
- registry
User stringName - registry username.
- registry_
password str - registry secret.
- registry_
url str - registry server Url.
- registry_
user_ strname - registry username.
- registry
Password String - registry secret.
- registry
Url String - registry server Url.
- registry
User StringName - registry username.
RegistryInfoResponse, RegistryInfoResponseArgs
- Registry
Url string - registry server Url.
- Registry
User stringName - registry username.
- Registry
Url string - registry server Url.
- Registry
User stringName - registry username.
- registry
Url String - registry server Url.
- registry
User StringName - registry username.
- registry
Url string - registry server Url.
- registry
User stringName - registry username.
- registry_
url str - registry server Url.
- registry_
user_ strname - registry username.
- registry
Url String - registry server Url.
- registry
User StringName - registry username.
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:ContainerAppsSourceControl current /subscriptions/651f8027-33e8-4ec4-97b4-f6e9f3dc8744/resourceGroups/workerapps-rg-xj/providers/Microsoft.App/containerApps/myapp/sourcecontrols/current
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0