1. Packages
  2. Fivetran Provider
  3. API Docs
  4. DestinationFingerprints
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

fivetran.DestinationFingerprints

Explore with Pulumi AI

fivetran logo
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

    This resource allows you to manage list of approved SSH fingerprints for a particular destination.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const myDestinationApprovedFingerprints = new fivetran.DestinationFingerprints("myDestinationApprovedFingerprints", {
        destinationId: fivetran_destination.my_destination.id,
        fingerprints: [
            {
                hash: "jhgfJfgrI6yy...",
                publicKey: "ssh-rsa CCCCB3NzaC1yc2ECCASFWFWDFRWT5WAS ... fivetran user key",
            },
            {
                hash: "eUtPirI6yytWe...",
                publicKey: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
            },
        ],
    });
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    my_destination_approved_fingerprints = fivetran.DestinationFingerprints("myDestinationApprovedFingerprints",
        destination_id=fivetran_destination["my_destination"]["id"],
        fingerprints=[
            {
                "hash": "jhgfJfgrI6yy...",
                "public_key": "ssh-rsa CCCCB3NzaC1yc2ECCASFWFWDFRWT5WAS ... fivetran user key",
            },
            {
                "hash": "eUtPirI6yytWe...",
                "public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
            },
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fivetran/fivetran"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fivetran.NewDestinationFingerprints(ctx, "myDestinationApprovedFingerprints", &fivetran.DestinationFingerprintsArgs{
    			DestinationId: pulumi.Any(fivetran_destination.My_destination.Id),
    			Fingerprints: fivetran.DestinationFingerprintsFingerprintArray{
    				&fivetran.DestinationFingerprintsFingerprintArgs{
    					Hash:      pulumi.String("jhgfJfgrI6yy..."),
    					PublicKey: pulumi.String("ssh-rsa CCCCB3NzaC1yc2ECCASFWFWDFRWT5WAS ... fivetran user key"),
    				},
    				&fivetran.DestinationFingerprintsFingerprintArgs{
    					Hash:      pulumi.String("eUtPirI6yytWe..."),
    					PublicKey: pulumi.String("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fivetran = Pulumi.Fivetran;
    
    return await Deployment.RunAsync(() => 
    {
        var myDestinationApprovedFingerprints = new Fivetran.DestinationFingerprints("myDestinationApprovedFingerprints", new()
        {
            DestinationId = fivetran_destination.My_destination.Id,
            Fingerprints = new[]
            {
                new Fivetran.Inputs.DestinationFingerprintsFingerprintArgs
                {
                    Hash = "jhgfJfgrI6yy...",
                    PublicKey = "ssh-rsa CCCCB3NzaC1yc2ECCASFWFWDFRWT5WAS ... fivetran user key",
                },
                new Fivetran.Inputs.DestinationFingerprintsFingerprintArgs
                {
                    Hash = "eUtPirI6yytWe...",
                    PublicKey = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fivetran.DestinationFingerprints;
    import com.pulumi.fivetran.DestinationFingerprintsArgs;
    import com.pulumi.fivetran.inputs.DestinationFingerprintsFingerprintArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var myDestinationApprovedFingerprints = new DestinationFingerprints("myDestinationApprovedFingerprints", DestinationFingerprintsArgs.builder()
                .destinationId(fivetran_destination.my_destination().id())
                .fingerprints(            
                    DestinationFingerprintsFingerprintArgs.builder()
                        .hash("jhgfJfgrI6yy...")
                        .publicKey("ssh-rsa CCCCB3NzaC1yc2ECCASFWFWDFRWT5WAS ... fivetran user key")
                        .build(),
                    DestinationFingerprintsFingerprintArgs.builder()
                        .hash("eUtPirI6yytWe...")
                        .publicKey("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key")
                        .build())
                .build());
    
        }
    }
    
    resources:
      myDestinationApprovedFingerprints:
        type: fivetran:DestinationFingerprints
        properties:
          destinationId: ${fivetran_destination.my_destination.id}
          fingerprints:
            - hash: jhgfJfgrI6yy...
              publicKey: ssh-rsa CCCCB3NzaC1yc2ECCASFWFWDFRWT5WAS ... fivetran user key
            - hash: eUtPirI6yytWe...
              publicKey: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key
    

    Create DestinationFingerprints Resource

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

    Constructor syntax

    new DestinationFingerprints(name: string, args: DestinationFingerprintsArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationFingerprints(resource_name: str,
                                args: DestinationFingerprintsArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationFingerprints(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                destination_id: Optional[str] = None,
                                fingerprints: Optional[Sequence[DestinationFingerprintsFingerprintArgs]] = None)
    func NewDestinationFingerprints(ctx *Context, name string, args DestinationFingerprintsArgs, opts ...ResourceOption) (*DestinationFingerprints, error)
    public DestinationFingerprints(string name, DestinationFingerprintsArgs args, CustomResourceOptions? opts = null)
    public DestinationFingerprints(String name, DestinationFingerprintsArgs args)
    public DestinationFingerprints(String name, DestinationFingerprintsArgs args, CustomResourceOptions options)
    
    type: fivetran:DestinationFingerprints
    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 DestinationFingerprintsArgs
    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 DestinationFingerprintsArgs
    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 DestinationFingerprintsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationFingerprintsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationFingerprintsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var destinationFingerprintsResource = new Fivetran.DestinationFingerprints("destinationFingerprintsResource", new()
    {
        DestinationId = "string",
        Fingerprints = new[]
        {
            new Fivetran.Inputs.DestinationFingerprintsFingerprintArgs
            {
                Hash = "string",
                PublicKey = "string",
                ValidatedBy = "string",
                ValidatedDate = "string",
            },
        },
    });
    
    example, err := fivetran.NewDestinationFingerprints(ctx, "destinationFingerprintsResource", &fivetran.DestinationFingerprintsArgs{
    DestinationId: pulumi.String("string"),
    Fingerprints: .DestinationFingerprintsFingerprintArray{
    &.DestinationFingerprintsFingerprintArgs{
    Hash: pulumi.String("string"),
    PublicKey: pulumi.String("string"),
    ValidatedBy: pulumi.String("string"),
    ValidatedDate: pulumi.String("string"),
    },
    },
    })
    
    var destinationFingerprintsResource = new DestinationFingerprints("destinationFingerprintsResource", DestinationFingerprintsArgs.builder()
        .destinationId("string")
        .fingerprints(DestinationFingerprintsFingerprintArgs.builder()
            .hash("string")
            .publicKey("string")
            .validatedBy("string")
            .validatedDate("string")
            .build())
        .build());
    
    destination_fingerprints_resource = fivetran.DestinationFingerprints("destinationFingerprintsResource",
        destination_id="string",
        fingerprints=[{
            "hash": "string",
            "public_key": "string",
            "validated_by": "string",
            "validated_date": "string",
        }])
    
    const destinationFingerprintsResource = new fivetran.DestinationFingerprints("destinationFingerprintsResource", {
        destinationId: "string",
        fingerprints: [{
            hash: "string",
            publicKey: "string",
            validatedBy: "string",
            validatedDate: "string",
        }],
    });
    
    type: fivetran:DestinationFingerprints
    properties:
        destinationId: string
        fingerprints:
            - hash: string
              publicKey: string
              validatedBy: string
              validatedDate: string
    

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

    DestinationId string
    The unique identifier for the target destination within the Fivetran system.
    Fingerprints List<DestinationFingerprintsFingerprint>
    DestinationId string
    The unique identifier for the target destination within the Fivetran system.
    Fingerprints []DestinationFingerprintsFingerprintArgs
    destinationId String
    The unique identifier for the target destination within the Fivetran system.
    fingerprints List<DestinationFingerprintsFingerprint>
    destinationId string
    The unique identifier for the target destination within the Fivetran system.
    fingerprints DestinationFingerprintsFingerprint[]
    destination_id str
    The unique identifier for the target destination within the Fivetran system.
    fingerprints Sequence[DestinationFingerprintsFingerprintArgs]
    destinationId String
    The unique identifier for the target destination within the Fivetran system.
    fingerprints List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DestinationFingerprints 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 string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DestinationFingerprints Resource

    Get an existing DestinationFingerprints 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?: DestinationFingerprintsState, opts?: CustomResourceOptions): DestinationFingerprints
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            destination_id: Optional[str] = None,
            fingerprints: Optional[Sequence[DestinationFingerprintsFingerprintArgs]] = None) -> DestinationFingerprints
    func GetDestinationFingerprints(ctx *Context, name string, id IDInput, state *DestinationFingerprintsState, opts ...ResourceOption) (*DestinationFingerprints, error)
    public static DestinationFingerprints Get(string name, Input<string> id, DestinationFingerprintsState? state, CustomResourceOptions? opts = null)
    public static DestinationFingerprints get(String name, Output<String> id, DestinationFingerprintsState state, CustomResourceOptions options)
    resources:  _:    type: fivetran:DestinationFingerprints    get:      id: ${id}
    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.
    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:
    DestinationId string
    The unique identifier for the target destination within the Fivetran system.
    Fingerprints List<DestinationFingerprintsFingerprint>
    DestinationId string
    The unique identifier for the target destination within the Fivetran system.
    Fingerprints []DestinationFingerprintsFingerprintArgs
    destinationId String
    The unique identifier for the target destination within the Fivetran system.
    fingerprints List<DestinationFingerprintsFingerprint>
    destinationId string
    The unique identifier for the target destination within the Fivetran system.
    fingerprints DestinationFingerprintsFingerprint[]
    destination_id str
    The unique identifier for the target destination within the Fivetran system.
    fingerprints Sequence[DestinationFingerprintsFingerprintArgs]
    destinationId String
    The unique identifier for the target destination within the Fivetran system.
    fingerprints List<Property Map>

    Supporting Types

    DestinationFingerprintsFingerprint, DestinationFingerprintsFingerprintArgs

    Hash string
    Hash of the fingerprint.
    PublicKey string
    The SSH public key.
    ValidatedBy string
    User name who validated the fingerprint.
    ValidatedDate string
    The date when fingerprint was approved.
    Hash string
    Hash of the fingerprint.
    PublicKey string
    The SSH public key.
    ValidatedBy string
    User name who validated the fingerprint.
    ValidatedDate string
    The date when fingerprint was approved.
    hash String
    Hash of the fingerprint.
    publicKey String
    The SSH public key.
    validatedBy String
    User name who validated the fingerprint.
    validatedDate String
    The date when fingerprint was approved.
    hash string
    Hash of the fingerprint.
    publicKey string
    The SSH public key.
    validatedBy string
    User name who validated the fingerprint.
    validatedDate string
    The date when fingerprint was approved.
    hash str
    Hash of the fingerprint.
    public_key str
    The SSH public key.
    validated_by str
    User name who validated the fingerprint.
    validated_date str
    The date when fingerprint was approved.
    hash String
    Hash of the fingerprint.
    publicKey String
    The SSH public key.
    validatedBy String
    User name who validated the fingerprint.
    validatedDate String
    The date when fingerprint was approved.

    Import

    1. To import an existing fivetran_destination_fingerprints resource into your Terraform state, you need to get Destination Group ID on the destination page in your Fivetran dashboard.

    2. To retrieve existing groups, use the fivetran_groups data source.

    3. Define an empty resource in your .tf configuration:

    hcl

    resource “fivetran_destination_fingerprints” “my_imported_destination_fingerprints” {

    }

    1. Run the pulumi import command:
    $ pulumi import fivetran:index/destinationFingerprints:DestinationFingerprints my_imported_destination_fingerprints {your Destination Group ID}
    
    1. Use the terraform state show command to get the values from the state:

    terraform state show ‘fivetran_destination_fingerprints.my_imported_destination_fingerprints’

    1. Copy the values and paste them to your .tf configuration.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fivetran fivetran/terraform-provider-fivetran
    License
    Notes
    This Pulumi package is based on the fivetran Terraform Provider.
    fivetran logo
    fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran