Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/murggu/azure-synapse-terraform
An example repo for provisioning a complete Azure Synapse Analytics environment through Terraform
https://github.com/murggu/azure-synapse-terraform
Last synced: 3 months ago
JSON representation
An example repo for provisioning a complete Azure Synapse Analytics environment through Terraform
- Host: GitHub
- URL: https://github.com/murggu/azure-synapse-terraform
- Owner: murggu
- Created: 2021-09-18T10:47:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-14T08:43:42.000Z (over 2 years ago)
- Last Synced: 2024-06-05T07:32:25.075Z (8 months ago)
- Language: HCL
- Homepage:
- Size: 121 KB
- Stars: 13
- Watchers: 1
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-synapse - murggu/azure-synapse-terraform - Secure Synapse Terraform templates. (Repositories / Deployment Templates)
README
# Azure Synapse Terraform Example
This repo shows an example for rolling out a complete [Azure Synapse Analytics](https://azure.microsoft.com/services/synapse-analytics/) enterprise environment via Terraform.
![Deployed resources](media/arch_syn01.png "Deployed resources")
This includes rollout of the following resources:
- Azure Synapse Analytics Workspace with Private Endpoints
- Azure Synapse Analytics Private Link Hub with Private Endpoint
- Azure Storage Account with Private Endpoints for `blob` and `dfs`
- Azure Key Vault with Private Endpoint
- Virtual Network
- Jumphost (Windows) with Bastion for easy access to the VNet## Instructions
Make sure you have the [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli) and [Terraform](https://www.terraform.io/downloads.html) installed.
1. Copy `terraform.tfvars.example` to `terraform.tfvars`
2. Update `terraform.tfvars` with your desired values
3. Run Terraform
```console
$ terraform init
$ terraform plan
$ terraform apply
```
## Notes
See notes below for additional info:- A public IP is added to Azure Storage Account and Azure Synapse Analytics firewall rules to enable the deployment. That rule could be removed once the deployment is finished, only limiting jumphost access.
- Change `enable_syn_sqlpool` and `enable_syn_sparkpool` values if you wanna deploy any of those pools.
- The deployment was tested on wsl (ubuntu).