oci.DevOps.Project
Explore with Pulumi AI
This resource provides the Project resource in Oracle Cloud Infrastructure Devops service.
Creates a new project.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testProject = new oci.devops.Project("test_project", {
compartmentId: compartmentId,
name: projectName,
notificationConfig: {
topicId: testNotificationTopic.id,
},
definedTags: {
"foo-namespace.bar-key": "value",
},
description: projectDescription,
freeformTags: {
"bar-key": "value",
},
});
import pulumi
import pulumi_oci as oci
test_project = oci.dev_ops.Project("test_project",
compartment_id=compartment_id,
name=project_name,
notification_config={
"topic_id": test_notification_topic["id"],
},
defined_tags={
"foo-namespace.bar-key": "value",
},
description=project_description,
freeform_tags={
"bar-key": "value",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/DevOps"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DevOps.NewProject(ctx, "test_project", &DevOps.ProjectArgs{
CompartmentId: pulumi.Any(compartmentId),
Name: pulumi.Any(projectName),
NotificationConfig: &devops.ProjectNotificationConfigArgs{
TopicId: pulumi.Any(testNotificationTopic.Id),
},
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
Description: pulumi.Any(projectDescription),
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testProject = new Oci.DevOps.Project("test_project", new()
{
CompartmentId = compartmentId,
Name = projectName,
NotificationConfig = new Oci.DevOps.Inputs.ProjectNotificationConfigArgs
{
TopicId = testNotificationTopic.Id,
},
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = projectDescription,
FreeformTags =
{
{ "bar-key", "value" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DevOps.Project;
import com.pulumi.oci.DevOps.ProjectArgs;
import com.pulumi.oci.DevOps.inputs.ProjectNotificationConfigArgs;
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 testProject = new Project("testProject", ProjectArgs.builder()
.compartmentId(compartmentId)
.name(projectName)
.notificationConfig(ProjectNotificationConfigArgs.builder()
.topicId(testNotificationTopic.id())
.build())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(projectDescription)
.freeformTags(Map.of("bar-key", "value"))
.build());
}
}
resources:
testProject:
type: oci:DevOps:Project
name: test_project
properties:
compartmentId: ${compartmentId}
name: ${projectName}
notificationConfig:
topicId: ${testNotificationTopic.id}
definedTags:
foo-namespace.bar-key: value
description: ${projectDescription}
freeformTags:
bar-key: value
Create Project Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
@overload
def Project(resource_name: str,
args: ProjectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Project(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
notification_config: Optional[_devops.ProjectNotificationConfigArgs] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
name: Optional[str] = None)
func NewProject(ctx *Context, name string, args ProjectArgs, opts ...ResourceOption) (*Project, error)
public Project(string name, ProjectArgs args, CustomResourceOptions? opts = null)
public Project(String name, ProjectArgs args)
public Project(String name, ProjectArgs args, CustomResourceOptions options)
type: oci:DevOps:Project
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 ProjectArgs
- 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 ProjectArgs
- 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 ProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectArgs
- 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 exampleprojectResourceResourceFromDevOpsproject = new Oci.DevOps.Project("exampleprojectResourceResourceFromDevOpsproject", new()
{
CompartmentId = "string",
NotificationConfig = new Oci.DevOps.Inputs.ProjectNotificationConfigArgs
{
TopicId = "string",
},
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
FreeformTags =
{
{ "string", "string" },
},
Name = "string",
});
example, err := DevOps.NewProject(ctx, "exampleprojectResourceResourceFromDevOpsproject", &DevOps.ProjectArgs{
CompartmentId: pulumi.String("string"),
NotificationConfig: &devops.ProjectNotificationConfigArgs{
TopicId: pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var exampleprojectResourceResourceFromDevOpsproject = new Project("exampleprojectResourceResourceFromDevOpsproject", ProjectArgs.builder()
.compartmentId("string")
.notificationConfig(ProjectNotificationConfigArgs.builder()
.topicId("string")
.build())
.definedTags(Map.of("string", "string"))
.description("string")
.freeformTags(Map.of("string", "string"))
.name("string")
.build());
exampleproject_resource_resource_from_dev_opsproject = oci.dev_ops.Project("exampleprojectResourceResourceFromDevOpsproject",
compartment_id="string",
notification_config=oci.dev_ops.ProjectNotificationConfigArgs(
topic_id="string",
),
defined_tags={
"string": "string",
},
description="string",
freeform_tags={
"string": "string",
},
name="string")
const exampleprojectResourceResourceFromDevOpsproject = new oci.devops.Project("exampleprojectResourceResourceFromDevOpsproject", {
compartmentId: "string",
notificationConfig: {
topicId: "string",
},
definedTags: {
string: "string",
},
description: "string",
freeformTags: {
string: "string",
},
name: "string",
});
type: oci:DevOps:Project
properties:
compartmentId: string
definedTags:
string: string
description: string
freeformTags:
string: string
name: string
notificationConfig:
topicId: string
Project 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 Project resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment where the project is created.
- Notification
Config ProjectNotification Config - (Updatable) Notification configuration for the project.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Project description.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Name string
- Project name (case-sensitive).
- Compartment
Id string - (Updatable) The OCID of the compartment where the project is created.
- Notification
Config ProjectNotification Config Args - (Updatable) Notification configuration for the project.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Project description.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Name string
- Project name (case-sensitive).
- compartment
Id String - (Updatable) The OCID of the compartment where the project is created.
- notification
Config ProjectNotification Config - (Updatable) Notification configuration for the project.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Project description.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- name String
- Project name (case-sensitive).
- compartment
Id string - (Updatable) The OCID of the compartment where the project is created.
- notification
Config ProjectNotification Config - (Updatable) Notification configuration for the project.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Project description.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- name string
- Project name (case-sensitive).
- compartment_
id str - (Updatable) The OCID of the compartment where the project is created.
- notification_
config devops.Project Notification Config Args - (Updatable) Notification configuration for the project.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Project description.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- name str
- Project name (case-sensitive).
- compartment
Id String - (Updatable) The OCID of the compartment where the project is created.
- notification
Config Property Map - (Updatable) Notification configuration for the project.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Project description.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- name String
- Project name (case-sensitive).
Outputs
All input properties are implicitly available as output properties. Additionally, the Project resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Namespace string
- Namespace associated with the project.
- State string
- The current state of the project.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - Time the project was created. Format defined by RFC3339.
- Time
Updated string - Time the project was updated. Format defined by RFC3339.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Namespace string
- Namespace associated with the project.
- State string
- The current state of the project.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - Time the project was created. Format defined by RFC3339.
- Time
Updated string - Time the project was updated. Format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- namespace String
- Namespace associated with the project.
- state String
- The current state of the project.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - Time the project was created. Format defined by RFC3339.
- time
Updated String - Time the project was updated. Format defined by RFC3339.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- namespace string
- Namespace associated with the project.
- state string
- The current state of the project.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - Time the project was created. Format defined by RFC3339.
- time
Updated string - Time the project was updated. Format defined by RFC3339.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- namespace str
- Namespace associated with the project.
- state str
- The current state of the project.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - Time the project was created. Format defined by RFC3339.
- time_
updated str - Time the project was updated. Format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- namespace String
- Namespace associated with the project.
- state String
- The current state of the project.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - Time the project was created. Format defined by RFC3339.
- time
Updated String - Time the project was updated. Format defined by RFC3339.
Look up Existing Project Resource
Get an existing Project resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ProjectState, opts?: CustomResourceOptions): Project
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
lifecycle_details: Optional[str] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
notification_config: Optional[_devops.ProjectNotificationConfigArgs] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> Project
func GetProject(ctx *Context, name string, id IDInput, state *ProjectState, opts ...ResourceOption) (*Project, error)
public static Project Get(string name, Input<string> id, ProjectState? state, CustomResourceOptions? opts = null)
public static Project get(String name, Output<String> id, ProjectState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID of the compartment where the project is created.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Project description.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Name string
- Project name (case-sensitive).
- Namespace string
- Namespace associated with the project.
- Notification
Config ProjectNotification Config - (Updatable) Notification configuration for the project.
- State string
- The current state of the project.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - Time the project was created. Format defined by RFC3339.
- Time
Updated string - Time the project was updated. Format defined by RFC3339.
- Compartment
Id string - (Updatable) The OCID of the compartment where the project is created.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Project description.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Name string
- Project name (case-sensitive).
- Namespace string
- Namespace associated with the project.
- Notification
Config ProjectNotification Config Args - (Updatable) Notification configuration for the project.
- State string
- The current state of the project.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - Time the project was created. Format defined by RFC3339.
- Time
Updated string - Time the project was updated. Format defined by RFC3339.
- compartment
Id String - (Updatable) The OCID of the compartment where the project is created.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Project description.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- name String
- Project name (case-sensitive).
- namespace String
- Namespace associated with the project.
- notification
Config ProjectNotification Config - (Updatable) Notification configuration for the project.
- state String
- The current state of the project.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - Time the project was created. Format defined by RFC3339.
- time
Updated String - Time the project was updated. Format defined by RFC3339.
- compartment
Id string - (Updatable) The OCID of the compartment where the project is created.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Project description.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- name string
- Project name (case-sensitive).
- namespace string
- Namespace associated with the project.
- notification
Config ProjectNotification Config - (Updatable) Notification configuration for the project.
- state string
- The current state of the project.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - Time the project was created. Format defined by RFC3339.
- time
Updated string - Time the project was updated. Format defined by RFC3339.
- compartment_
id str - (Updatable) The OCID of the compartment where the project is created.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Project description.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- name str
- Project name (case-sensitive).
- namespace str
- Namespace associated with the project.
- notification_
config devops.Project Notification Config Args - (Updatable) Notification configuration for the project.
- state str
- The current state of the project.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - Time the project was created. Format defined by RFC3339.
- time_
updated str - Time the project was updated. Format defined by RFC3339.
- compartment
Id String - (Updatable) The OCID of the compartment where the project is created.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Project description.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- name String
- Project name (case-sensitive).
- namespace String
- Namespace associated with the project.
- notification
Config Property Map - (Updatable) Notification configuration for the project.
- state String
- The current state of the project.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - Time the project was created. Format defined by RFC3339.
- time
Updated String - Time the project was updated. Format defined by RFC3339.
Supporting Types
ProjectNotificationConfig, ProjectNotificationConfigArgs
- Topic
Id string (Updatable) The topic ID for notifications.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Topic
Id string (Updatable) The topic ID for notifications.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- topic
Id String (Updatable) The topic ID for notifications.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- topic
Id string (Updatable) The topic ID for notifications.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- topic_
id str (Updatable) The topic ID for notifications.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- topic
Id String (Updatable) The topic ID for notifications.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Import
Projects can be imported using the id
, e.g.
$ pulumi import oci:DevOps/project:Project test_project "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.