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

fivetran.getGroupSshKey

Explore with Pulumi AI

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

    This data source returns public key from SSH key pair associated with the group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const myGroupPublicKey = fivetran.getGroupSshKey({
        id: "group_id",
    });
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    my_group_public_key = fivetran.get_group_ssh_key(id="group_id")
    
    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.GetGroupSshKey(ctx, &fivetran.GetGroupSshKeyArgs{
    			Id: "group_id",
    		}, nil)
    		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 myGroupPublicKey = Fivetran.GetGroupSshKey.Invoke(new()
        {
            Id = "group_id",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fivetran.FivetranFunctions;
    import com.pulumi.fivetran.inputs.GetGroupSshKeyArgs;
    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) {
            final var myGroupPublicKey = FivetranFunctions.getGroupSshKey(GetGroupSshKeyArgs.builder()
                .id("group_id")
                .build());
    
        }
    }
    
    variables:
      myGroupPublicKey:
        fn::invoke:
          function: fivetran:getGroupSshKey
          arguments:
            id: group_id
    

    Using getGroupSshKey

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getGroupSshKey(args: GetGroupSshKeyArgs, opts?: InvokeOptions): Promise<GetGroupSshKeyResult>
    function getGroupSshKeyOutput(args: GetGroupSshKeyOutputArgs, opts?: InvokeOptions): Output<GetGroupSshKeyResult>
    def get_group_ssh_key(id: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetGroupSshKeyResult
    def get_group_ssh_key_output(id: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetGroupSshKeyResult]
    func GetGroupSshKey(ctx *Context, args *GetGroupSshKeyArgs, opts ...InvokeOption) (*GetGroupSshKeyResult, error)
    func GetGroupSshKeyOutput(ctx *Context, args *GetGroupSshKeyOutputArgs, opts ...InvokeOption) GetGroupSshKeyResultOutput

    > Note: This function is named GetGroupSshKey in the Go SDK.

    public static class GetGroupSshKey 
    {
        public static Task<GetGroupSshKeyResult> InvokeAsync(GetGroupSshKeyArgs args, InvokeOptions? opts = null)
        public static Output<GetGroupSshKeyResult> Invoke(GetGroupSshKeyInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetGroupSshKeyResult> getGroupSshKey(GetGroupSshKeyArgs args, InvokeOptions options)
    public static Output<GetGroupSshKeyResult> getGroupSshKey(GetGroupSshKeyArgs args, InvokeOptions options)
    
    fn::invoke:
      function: fivetran:index/getGroupSshKey:getGroupSshKey
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The unique identifier for the group within the Fivetran system.
    Id string
    The unique identifier for the group within the Fivetran system.
    id String
    The unique identifier for the group within the Fivetran system.
    id string
    The unique identifier for the group within the Fivetran system.
    id str
    The unique identifier for the group within the Fivetran system.
    id String
    The unique identifier for the group within the Fivetran system.

    getGroupSshKey Result

    The following output properties are available:

    Id string
    The unique identifier for the group within the Fivetran system.
    PublicKey string
    Public key from SSH key pair associated with the group.
    Id string
    The unique identifier for the group within the Fivetran system.
    PublicKey string
    Public key from SSH key pair associated with the group.
    id String
    The unique identifier for the group within the Fivetran system.
    publicKey String
    Public key from SSH key pair associated with the group.
    id string
    The unique identifier for the group within the Fivetran system.
    publicKey string
    Public key from SSH key pair associated with the group.
    id str
    The unique identifier for the group within the Fivetran system.
    public_key str
    Public key from SSH key pair associated with the group.
    id String
    The unique identifier for the group within the Fivetran system.
    publicKey String
    Public key from SSH key pair associated with the group.

    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