aws-cloudformation / cloudformation-coverage-roadmap

The AWS CloudFormation Public Coverage Roadmap
https://aws.amazon.com/cloudformation/
Creative Commons Attribution Share Alike 4.0 International
1.11k stars 54 forks source link

AWS::Glue::Connection ConnectionType SNOWFLAKE #1810

Closed konoui closed 6 months ago

konoui commented 11 months ago

Name of the resource

AWS::Glue::Connection

Resource name

No response

Description

The ConnectionType SNOWFLAKE is not supported. Manual creation of this resource is possible.

aws glue get-connection --name connection
{
    "Connection": {
        "Name": "connection",
        "Description": "",
        "ConnectionType": "SNOWFLAKE",
        (snip)
    }
}

Other Details

No response

mikerobg commented 6 months ago

The below example can be used to successfully create a Glue Connection with SNOWFLAKE ConnectionType:

Resources:
    SnowflakeConn:
        Type: AWS::Glue::Connection
        Properties:
            ConnectionInput:
                ConnectionType: "SNOWFLAKE"
                ConnectionProperties:
                    SparkProperties: "{\"sfUrl\":\"https://yoursubdomain.snowflakecomputing.com\",\"secretId\":\"snowflake-connection-secretid\"}"
                Name: "cfn-snowflake-connection"