aiven.OrganizationProject
Explore with Pulumi AI
Creates and manages an Aiven project.
This resource is in the beta stage and may change without notice. Set
the PROVIDER_AIVEN_ENABLE_BETA
environment variable to use the resource.
Create OrganizationProject Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrganizationProject(name: string, args: OrganizationProjectArgs, opts?: CustomResourceOptions);
@overload
def OrganizationProject(resource_name: str,
args: OrganizationProjectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OrganizationProject(resource_name: str,
opts: Optional[ResourceOptions] = None,
billing_group_id: Optional[str] = None,
organization_id: Optional[str] = None,
parent_id: Optional[str] = None,
project_id: Optional[str] = None,
base_port: Optional[int] = None,
tags: Optional[Sequence[OrganizationProjectTagArgs]] = None,
technical_emails: Optional[Sequence[str]] = None,
timeouts: Optional[OrganizationProjectTimeoutsArgs] = None)
func NewOrganizationProject(ctx *Context, name string, args OrganizationProjectArgs, opts ...ResourceOption) (*OrganizationProject, error)
public OrganizationProject(string name, OrganizationProjectArgs args, CustomResourceOptions? opts = null)
public OrganizationProject(String name, OrganizationProjectArgs args)
public OrganizationProject(String name, OrganizationProjectArgs args, CustomResourceOptions options)
type: aiven:OrganizationProject
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 OrganizationProjectArgs
- 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 OrganizationProjectArgs
- 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 OrganizationProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrganizationProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrganizationProjectArgs
- 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 organizationProjectResource = new Aiven.OrganizationProject("organizationProjectResource", new()
{
BillingGroupId = "string",
OrganizationId = "string",
ParentId = "string",
ProjectId = "string",
BasePort = 0,
Tags = new[]
{
new Aiven.Inputs.OrganizationProjectTagArgs
{
Key = "string",
Value = "string",
},
},
TechnicalEmails = new[]
{
"string",
},
Timeouts = new Aiven.Inputs.OrganizationProjectTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := aiven.NewOrganizationProject(ctx, "organizationProjectResource", &aiven.OrganizationProjectArgs{
BillingGroupId: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
ParentId: pulumi.String("string"),
ProjectId: pulumi.String("string"),
BasePort: pulumi.Int(0),
Tags: aiven.OrganizationProjectTagArray{
&aiven.OrganizationProjectTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TechnicalEmails: pulumi.StringArray{
pulumi.String("string"),
},
Timeouts: &aiven.OrganizationProjectTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var organizationProjectResource = new OrganizationProject("organizationProjectResource", OrganizationProjectArgs.builder()
.billingGroupId("string")
.organizationId("string")
.parentId("string")
.projectId("string")
.basePort(0)
.tags(OrganizationProjectTagArgs.builder()
.key("string")
.value("string")
.build())
.technicalEmails("string")
.timeouts(OrganizationProjectTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
organization_project_resource = aiven.OrganizationProject("organizationProjectResource",
billing_group_id="string",
organization_id="string",
parent_id="string",
project_id="string",
base_port=0,
tags=[{
"key": "string",
"value": "string",
}],
technical_emails=["string"],
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const organizationProjectResource = new aiven.OrganizationProject("organizationProjectResource", {
billingGroupId: "string",
organizationId: "string",
parentId: "string",
projectId: "string",
basePort: 0,
tags: [{
key: "string",
value: "string",
}],
technicalEmails: ["string"],
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: aiven:OrganizationProject
properties:
basePort: 0
billingGroupId: string
organizationId: string
parentId: string
projectId: string
tags:
- key: string
value: string
technicalEmails:
- string
timeouts:
create: string
delete: string
read: string
update: string
OrganizationProject Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OrganizationProject resource accepts the following input properties:
- Billing
Group stringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- Organization
Id string - ID of an organization. Maximum length:
36
. - Parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- Project
Id string - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- Base
Port int - Valid port number (1-65535) to use as a base for service port allocation.
- List<Organization
Project Tag> - Tags are key-value pairs that allow you to categorize projects.
- Technical
Emails List<string> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- Timeouts
Organization
Project Timeouts
- Billing
Group stringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- Organization
Id string - ID of an organization. Maximum length:
36
. - Parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- Project
Id string - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- Base
Port int - Valid port number (1-65535) to use as a base for service port allocation.
- []Organization
Project Tag Args - Tags are key-value pairs that allow you to categorize projects.
- Technical
Emails []string - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- Timeouts
Organization
Project Timeouts Args
- billing
Group StringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- organization
Id String - ID of an organization. Maximum length:
36
. - parent
Id String - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id String - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- base
Port Integer - Valid port number (1-65535) to use as a base for service port allocation.
- List<Organization
Project Tag> - Tags are key-value pairs that allow you to categorize projects.
- technical
Emails List<String> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- timeouts
Organization
Project Timeouts
- billing
Group stringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- organization
Id string - ID of an organization. Maximum length:
36
. - parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id string - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- base
Port number - Valid port number (1-65535) to use as a base for service port allocation.
- Organization
Project Tag[] - Tags are key-value pairs that allow you to categorize projects.
- technical
Emails string[] - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- timeouts
Organization
Project Timeouts
- billing_
group_ strid - Billing group ID to assign to the project. It's required when moving projects between organizations.
- organization_
id str - ID of an organization. Maximum length:
36
. - parent_
id str - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project_
id str - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- base_
port int - Valid port number (1-65535) to use as a base for service port allocation.
- Sequence[Organization
Project Tag Args] - Tags are key-value pairs that allow you to categorize projects.
- technical_
emails Sequence[str] - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- timeouts
Organization
Project Timeouts Args
- billing
Group StringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- organization
Id String - ID of an organization. Maximum length:
36
. - parent
Id String - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id String - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- base
Port Number - Valid port number (1-65535) to use as a base for service port allocation.
- List<Property Map>
- Tags are key-value pairs that allow you to categorize projects.
- technical
Emails List<String> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the OrganizationProject resource produces the following output properties:
Look up Existing OrganizationProject Resource
Get an existing OrganizationProject 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?: OrganizationProjectState, opts?: CustomResourceOptions): OrganizationProject
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
base_port: Optional[int] = None,
billing_group_id: Optional[str] = None,
ca_cert: Optional[str] = None,
organization_id: Optional[str] = None,
parent_id: Optional[str] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[OrganizationProjectTagArgs]] = None,
technical_emails: Optional[Sequence[str]] = None,
timeouts: Optional[OrganizationProjectTimeoutsArgs] = None) -> OrganizationProject
func GetOrganizationProject(ctx *Context, name string, id IDInput, state *OrganizationProjectState, opts ...ResourceOption) (*OrganizationProject, error)
public static OrganizationProject Get(string name, Input<string> id, OrganizationProjectState? state, CustomResourceOptions? opts = null)
public static OrganizationProject get(String name, Output<String> id, OrganizationProjectState state, CustomResourceOptions options)
resources: _: type: aiven:OrganizationProject get: id: ${id}
- 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.
- Base
Port int - Valid port number (1-65535) to use as a base for service port allocation.
- Billing
Group stringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- Ca
Cert string - PEM encoded certificate.
- Organization
Id string - ID of an organization. Maximum length:
36
. - Parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- Project
Id string - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- List<Organization
Project Tag> - Tags are key-value pairs that allow you to categorize projects.
- Technical
Emails List<string> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- Timeouts
Organization
Project Timeouts
- Base
Port int - Valid port number (1-65535) to use as a base for service port allocation.
- Billing
Group stringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- Ca
Cert string - PEM encoded certificate.
- Organization
Id string - ID of an organization. Maximum length:
36
. - Parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- Project
Id string - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- []Organization
Project Tag Args - Tags are key-value pairs that allow you to categorize projects.
- Technical
Emails []string - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- Timeouts
Organization
Project Timeouts Args
- base
Port Integer - Valid port number (1-65535) to use as a base for service port allocation.
- billing
Group StringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- ca
Cert String - PEM encoded certificate.
- organization
Id String - ID of an organization. Maximum length:
36
. - parent
Id String - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id String - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- List<Organization
Project Tag> - Tags are key-value pairs that allow you to categorize projects.
- technical
Emails List<String> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- timeouts
Organization
Project Timeouts
- base
Port number - Valid port number (1-65535) to use as a base for service port allocation.
- billing
Group stringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- ca
Cert string - PEM encoded certificate.
- organization
Id string - ID of an organization. Maximum length:
36
. - parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id string - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- Organization
Project Tag[] - Tags are key-value pairs that allow you to categorize projects.
- technical
Emails string[] - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- timeouts
Organization
Project Timeouts
- base_
port int - Valid port number (1-65535) to use as a base for service port allocation.
- billing_
group_ strid - Billing group ID to assign to the project. It's required when moving projects between organizations.
- ca_
cert str - PEM encoded certificate.
- organization_
id str - ID of an organization. Maximum length:
36
. - parent_
id str - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project_
id str - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- Sequence[Organization
Project Tag Args] - Tags are key-value pairs that allow you to categorize projects.
- technical_
emails Sequence[str] - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- timeouts
Organization
Project Timeouts Args
- base
Port Number - Valid port number (1-65535) to use as a base for service port allocation.
- billing
Group StringId - Billing group ID to assign to the project. It's required when moving projects between organizations.
- ca
Cert String - PEM encoded certificate.
- organization
Id String - ID of an organization. Maximum length:
36
. - parent
Id String - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id String - The name of the project. Names must be globally unique among all Aiven customers. Names must begin with a letter (a-z), and consist of letters, numbers, and dashes. It's recommended to use a random string or your organization name as a prefix or suffix. Changing this property forces recreation of the resource. Changing this property forces recreation of the resource.
- List<Property Map>
- Tags are key-value pairs that allow you to categorize projects.
- technical
Emails List<String> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- timeouts Property Map
Supporting Types
OrganizationProjectTag, OrganizationProjectTagArgs
OrganizationProjectTimeouts, OrganizationProjectTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
$ pulumi import aiven:index/organizationProject:OrganizationProject example_project ORGANIZATION_ID/PROJECT_ID
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aiven
Terraform Provider.