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 string
- The unique name of the resource.
- args MinifluxServiceArgs
- The arguments to resource properties.
- opts ComponentResourceOptions
- 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 ComponentResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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
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:
- Admin
Password string - The Miniflux administrator's password.
- Db
Password string - The PostgreSQL user's password.
- Admin
Username string - The username to use for the Miniflux service administrator account.
- Db
Name string - The name of the PostgreSQL database to be used by Miniflux.
- Db
Username string - The username of the PostgreSQL account to be used by the Miniflux service.
- Admin
Password string - The Miniflux administrator's password.
- Db
Password string - The PostgreSQL user's password.
- Admin
Username string - The username to use for the Miniflux service administrator account.
- Db
Name string - The name of the PostgreSQL database to be used by Miniflux.
- Db
Username string - The username of the PostgreSQL account to be used by the Miniflux service.
- admin
Password String - The Miniflux administrator's password.
- db
Password String - The PostgreSQL user's password.
- admin
Username String - The username to use for the Miniflux service administrator account.
- db
Name String - The name of the PostgreSQL database to be used by Miniflux.
- db
Username String - The username of the PostgreSQL account to be used by the Miniflux service.
- admin
Password string - The Miniflux administrator's password.
- db
Password string - The PostgreSQL user's password.
- admin
Username string - The username to use for the Miniflux service administrator account.
- db
Name string - The name of the PostgreSQL database to be used by Miniflux.
- db
Username 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.
- admin
Password String - The Miniflux administrator's password.
- db
Password String - The PostgreSQL user's password.
- admin
Username String - The username to use for the Miniflux service administrator account.
- db
Name String - The name of the PostgreSQL database to be used by Miniflux.
- db
Username 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