1. Packages
  2. Miniflux
  3. API Docs
  4. MinifluxService
Miniflux v0.1.0 published on Friday, Oct 15, 2021 by Christian Nunciato

aws-miniflux.MinifluxService

Explore with Pulumi AI

aws-miniflux logo
Miniflux v0.1.0 published on Friday, Oct 15, 2021 by Christian Nunciato

    Create MinifluxService Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MinifluxService(name: string, args: MinifluxServiceArgs, opts?: CustomResourceOptions);
    @overload
    def MinifluxService(resource_name: str,
                        args: MinifluxServiceArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def MinifluxService(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        admin_password: Optional[str] = None,
                        db_password: Optional[str] = None,
                        admin_username: Optional[str] = None,
                        db_name: Optional[str] = None,
                        db_username: Optional[str] = None)
    func NewMinifluxService(ctx *Context, name string, args MinifluxServiceArgs, opts ...ResourceOption) (*MinifluxService, error)
    public MinifluxService(string name, MinifluxServiceArgs args, CustomResourceOptions? opts = null)
    public MinifluxService(String name, MinifluxServiceArgs args)
    public MinifluxService(String name, MinifluxServiceArgs args, CustomResourceOptions options)
    
    type: aws-miniflux:MinifluxService
    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 MinifluxServiceArgs
    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 MinifluxServiceArgs
    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 MinifluxServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MinifluxServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MinifluxServiceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var minifluxServiceResource = new AwsMiniflux.MinifluxService("minifluxServiceResource", new()
    {
        AdminPassword = "string",
        DbPassword = "string",
        AdminUsername = "string",
        DbName = "string",
        DbUsername = "string",
    });
    
    example, err := awsminiflux.NewMinifluxService(ctx, "minifluxServiceResource", &awsminiflux.MinifluxServiceArgs{
    	AdminPassword: pulumi.String("string"),
    	DbPassword:    pulumi.String("string"),
    	AdminUsername: pulumi.String("string"),
    	DbName:        pulumi.String("string"),
    	DbUsername:    pulumi.String("string"),
    })
    
    var minifluxServiceResource = new MinifluxService("minifluxServiceResource", MinifluxServiceArgs.builder()        
        .adminPassword("string")
        .dbPassword("string")
        .adminUsername("string")
        .dbName("string")
        .dbUsername("string")
        .build());
    
    miniflux_service_resource = aws_miniflux.MinifluxService("minifluxServiceResource",
        admin_password="string",
        db_password="string",
        admin_username="string",
        db_name="string",
        db_username="string")
    
    const minifluxServiceResource = new aws_miniflux.MinifluxService("minifluxServiceResource", {
        adminPassword: "string",
        dbPassword: "string",
        adminUsername: "string",
        dbName: "string",
        dbUsername: "string",
    });
    
    type: aws-miniflux:MinifluxService
    properties:
        adminPassword: string
        adminUsername: string
        dbName: string
        dbPassword: string
        dbUsername: string
    

    MinifluxService 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 MinifluxService resource accepts the following input properties:

    AdminPassword string
    The Miniflux administrator's password.
    DbPassword string
    The PostgreSQL user's password.
    AdminUsername string
    The username to use for the Miniflux service administrator account.
    DbName string
    The name of the PostgreSQL database to be used by Miniflux.
    DbUsername string
    The username of the PostgreSQL account to be used by the Miniflux service.
    AdminPassword string
    The Miniflux administrator's password.
    DbPassword string
    The PostgreSQL user's password.
    AdminUsername string
    The username to use for the Miniflux service administrator account.
    DbName string
    The name of the PostgreSQL database to be used by Miniflux.
    DbUsername string
    The username of the PostgreSQL account to be used by the Miniflux service.
    adminPassword String
    The Miniflux administrator's password.
    dbPassword String
    The PostgreSQL user's password.
    adminUsername String
    The username to use for the Miniflux service administrator account.
    dbName String
    The name of the PostgreSQL database to be used by Miniflux.
    dbUsername String
    The username of the PostgreSQL account to be used by the Miniflux service.
    adminPassword string
    The Miniflux administrator's password.
    dbPassword string
    The PostgreSQL user's password.
    adminUsername string
    The username to use for the Miniflux service administrator account.
    dbName string
    The name of the PostgreSQL database to be used by Miniflux.
    dbUsername string
    The username of the PostgreSQL account to be used by the Miniflux service.
    admin_password str
    The Miniflux administrator's password.
    db_password str
    The PostgreSQL user's password.
    admin_username str
    The username to use for the Miniflux service administrator account.
    db_name str
    The name of the PostgreSQL database to be used by Miniflux.
    db_username str
    The username of the PostgreSQL account to be used by the Miniflux service.
    adminPassword String
    The Miniflux administrator's password.
    dbPassword String
    The PostgreSQL user's password.
    adminUsername String
    The username to use for the Miniflux service administrator account.
    dbName String
    The name of the PostgreSQL database to be used by Miniflux.
    dbUsername String
    The username of the PostgreSQL account to be used by the Miniflux service.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MinifluxService resource produces the following output properties:

    Endpoint string
    The URL of the Miniflux service.
    Endpoint string
    The URL of the Miniflux service.
    endpoint String
    The URL of the Miniflux service.
    endpoint string
    The URL of the Miniflux service.
    endpoint str
    The URL of the Miniflux service.
    endpoint String
    The URL of the Miniflux service.

    Package Details

    Repository
    Miniflux
    License
    aws-miniflux logo
    Miniflux v0.1.0 published on Friday, Oct 15, 2021 by Christian Nunciato