PluginCommunity
This resource allows you to install or uninstall community plugins. Once installed the plugin will be available in cloudamqp.Plugin
.
Only available for dedicated subscription plans.
Depedency
This resource depends on CloudAMQP instance identifier, cloudamqp_instance.instance.id
.
Example Usage
using Pulumi;
using CloudAmqp = Pulumi.CloudAmqp;
class MyStack : Stack
{
public MyStack()
{
var rabbitmqDelayedMessageExchange = new CloudAmqp.PluginCommunity("rabbitmqDelayedMessageExchange", new CloudAmqp.PluginCommunityArgs
{
InstanceId = cloudamqp_instance.Instance_01.Id,
Enabled = true,
});
}
}
package main
import (
"github.com/pulumi/pulumi-cloudamqp/sdk/v2/go/cloudamqp"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudamqp.NewPluginCommunity(ctx, "rabbitmqDelayedMessageExchange", &cloudamqp.PluginCommunityArgs{
InstanceId: pulumi.Any(cloudamqp_instance.Instance_01.Id),
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_cloudamqp as cloudamqp
rabbitmq_delayed_message_exchange = cloudamqp.PluginCommunity("rabbitmqDelayedMessageExchange",
instance_id=cloudamqp_instance["instance_01"]["id"],
enabled=True)
import * as pulumi from "@pulumi/pulumi";
import * as cloudamqp from "@pulumi/cloudamqp";
const rabbitmqDelayedMessageExchange = new cloudamqp.PluginCommunity("rabbitmqDelayedMessageExchange", {
instanceId: cloudamqp_instance.instance_01.id,
enabled: true,
});
Create a PluginCommunity Resource
new PluginCommunity(name: string, args: PluginCommunityArgs, opts?: CustomResourceOptions);
def PluginCommunity(resource_name: str, opts: Optional[ResourceOptions] = None, enabled: Optional[bool] = None, instance_id: Optional[int] = None, name: Optional[str] = None)
func NewPluginCommunity(ctx *Context, name string, args PluginCommunityArgs, opts ...ResourceOption) (*PluginCommunity, error)
public PluginCommunity(string name, PluginCommunityArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args PluginCommunityArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PluginCommunityArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PluginCommunityArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
PluginCommunity Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The PluginCommunity resource accepts the following input properties:
- Enabled bool
Enable or disable the plugins.
- Instance
Id int The CloudAMQP instance ID.
- Name string
The name of the Rabbit MQ plugin.
- Enabled bool
Enable or disable the plugins.
- Instance
Id int The CloudAMQP instance ID.
- Name string
The name of the Rabbit MQ plugin.
- enabled boolean
Enable or disable the plugins.
- instance
Id number The CloudAMQP instance ID.
- name string
The name of the Rabbit MQ plugin.
- enabled bool
Enable or disable the plugins.
- instance_
id int The CloudAMQP instance ID.
- name str
The name of the Rabbit MQ plugin.
Outputs
All input properties are implicitly available as output properties. Additionally, the PluginCommunity resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
Look up an Existing PluginCommunity Resource
Get an existing PluginCommunity 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?: PluginCommunityState, opts?: CustomResourceOptions): PluginCommunity
@staticmethod
def get(resource_name: str, id: str, opts: Optional[ResourceOptions] = None, enabled: Optional[bool] = None, instance_id: Optional[int] = None, name: Optional[str] = None) -> PluginCommunity
func GetPluginCommunity(ctx *Context, name string, id IDInput, state *PluginCommunityState, opts ...ResourceOption) (*PluginCommunity, error)
public static PluginCommunity Get(string name, Input<string> id, PluginCommunityState? state, CustomResourceOptions? opts = null)
- 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.
The following state arguments are supported:
- Enabled bool
Enable or disable the plugins.
- Instance
Id int The CloudAMQP instance ID.
- Name string
The name of the Rabbit MQ plugin.
- Enabled bool
Enable or disable the plugins.
- Instance
Id int The CloudAMQP instance ID.
- Name string
The name of the Rabbit MQ plugin.
- enabled boolean
Enable or disable the plugins.
- instance
Id number The CloudAMQP instance ID.
- name string
The name of the Rabbit MQ plugin.
- enabled bool
Enable or disable the plugins.
- instance_
id int The CloudAMQP instance ID.
- name str
The name of the Rabbit MQ plugin.
Import
cloudamqp_plugin
can be imported using the name argument of the resource together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
$ pulumi import cloudamqp:index/pluginCommunity:PluginCommunity <resource_name> <plugin_name>,<instance_id>`
Package Details
- Repository
- https://github.com/pulumi/pulumi-cloudamqp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudamqp
Terraform Provider.