UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

55 lines (54 loc) 1.96 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to get information on an fortios router keychain */ export declare function getKeychain(args: GetKeychainArgs, opts?: pulumi.InvokeOptions): Promise<GetKeychainResult>; /** * A collection of arguments for invoking getKeychain. */ export interface GetKeychainArgs { /** * Specify the name of the desired router keychain. */ name: string; /** * Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: string; } /** * A collection of values returned by getKeychain. */ export interface GetKeychainResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Configuration method to edit key settings. The structure of `key` block is documented below. */ readonly keys: outputs.router.GetKeychainKey[]; /** * Key-chain name. */ readonly name: string; readonly vdomparam?: string; } /** * Use this data source to get information on an fortios router keychain */ export declare function getKeychainOutput(args: GetKeychainOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetKeychainResult>; /** * A collection of arguments for invoking getKeychain. */ export interface GetKeychainOutputArgs { /** * Specify the name of the desired router keychain. */ name: pulumi.Input<string>; /** * Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: pulumi.Input<string>; }