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

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?: ComponentResourceOptions);
@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, ComponentResourceOptions? opts = null)
public MinifluxService(String name, MinifluxServiceArgs args)
public MinifluxService(String name, MinifluxServiceArgs args, ComponentResourceOptions options)
type: aws-miniflux:MinifluxService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. MinifluxServiceArgs
The arguments to resource properties.
opts ComponentResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. MinifluxServiceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. MinifluxServiceArgs
The arguments to resource properties.
opts ComponentResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MinifluxServiceArgs
The arguments to resource properties.
options ComponentResourceOptions
Bag of options to control resource's behavior.

Constructor 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",
});
Copy
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"),
})
Copy
var minifluxServiceResource = new MinifluxService("minifluxServiceResource", MinifluxServiceArgs.builder()
    .adminPassword("string")
    .dbPassword("string")
    .adminUsername("string")
    .dbName("string")
    .dbUsername("string")
    .build());
Copy
miniflux_service_resource = aws_miniflux.MinifluxService("minifluxServiceResource",
    admin_password="string",
    db_password="string",
    admin_username="string",
    db_name="string",
    db_username="string")
Copy
const minifluxServiceResource = new aws_miniflux.MinifluxService("minifluxServiceResource", {
    adminPassword: "string",
    dbPassword: "string",
    adminUsername: "string",
    dbName: "string",
    dbUsername: "string",
});
Copy
type: aws-miniflux:MinifluxService
properties:
    adminPassword: string
    adminUsername: string
    dbName: string
    dbPassword: string
    dbUsername: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The MinifluxService resource accepts the following input properties:

AdminPassword This property is required. string
The Miniflux administrator's password.
DbPassword This property is required. 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 This property is required. string
The Miniflux administrator's password.
DbPassword This property is required. 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 This property is required. String
The Miniflux administrator's password.
dbPassword This property is required. 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 This property is required. string
The Miniflux administrator's password.
dbPassword This property is required. 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 This property is required. str
The Miniflux administrator's password.
db_password This property is required. 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 This property is required. String
The Miniflux administrator's password.
dbPassword This property is required. 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