# Snowflake PrivateLink

AWS PrivateLink is an AWS service for creating private VPC endpoints that allow direct, secure connectivity between your AWS VPCs and the Snowflake VPC without traversing the public Internet.

{% hint style="info" %}
For additional information refer to the Snowflake docs [here](https://docs.snowflake.com/en/user-guide/admin-security-privatelink#enabling-aws-privatelink).
{% endhint %}

### Open a Snowflake Support Case

In Snowflake, you will firs need to open a Support Case to allow access from the Paradime AWS account. More info [here](https://community.snowflake.com/s/article/HowtosetupPrivatelinktoSnowflakefromCloudServiceVendors).

{% hint style="warning" %}
You will need to provide in your Support case the Paradime AWS account ID. Contact with the Paradime team at <support@paradime.io>.
{% endhint %}

To submit your Support request in Snowflake, you will need to have `ACCOUNTADMIN` to your Snowflake instance.

<figure><img src="https://2337193041-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FHET0AD04uHMgdeLAjptq%2Fuploads%2FAUdH15SS2jv0saeS8yYl%2Fsnowflake_privatelink_suportcase.png?alt=media&#x26;token=2885ed42-a293-418a-9d06-e9d76e0e9b03" alt=""><figcaption></figcaption></figure>

### Retrieve private link configuration <a href="#retrieve-private-link-configuration" id="retrieve-private-link-configuration"></a>

After completing the above step you will need to retrieve your Snowflake private link configuration and share these with the Paradime team to complete the setup.

Run the below command in Snowflake:

```sql
select SYSTEM$GET_PRIVATELINK_CONFIG();
```

This will return the below information that will need to be shared with the Paradime team to complete the Private Link setup.

```json
{
  "regionless-snowsight-privatelink-url": "<privatelink_org_snowsight_url>",
  "privatelink-account-name": "<account_identifier>",
  "snowsight-privatelink-url": "<privatelink_region_snowsight_url>",
  "privatelink-internal-stage": "<privatelink_stage_endpoint>",
  "privatelink-account-url": "<privatelink_account_url>",
  "privatelink-connection-urls": "<privatelink_connection_url_list>",
  "privatelink-ocsp-url": "<privatelink_ocsp_url>",
  "privatelink-vpce-id": "<aws_vpce_id>"
}
```
