Compare commits

...

6 Commits

Author SHA1 Message Date
42dc6ee08b interim put 2024-10-31 19:03:52 -07:00
9b1c5ecc01 Merge pull request #384 from Azure/UserStory330782
User Story 330782 - 101-data-factory
2024-10-25 15:36:47 -07:00
878ea2e7e3 Updated readme & vars 2024-10-25 15:04:55 -07:00
e6c148c0f4 Updated 2024-10-25 15:01:17 -07:00
2e32ee6be9 Initial put 2024-10-24 16:33:35 -07:00
b6461f0599 Merge pull request #383 from Azure/UserStory330721
User Story 330721 - 101-azure-container-registry
2024-10-24 14:11:45 -07:00
5 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Azure Data Factory
This template deploys an Azure Data Factory instance.
## Terraform resource types
- [random_pet](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/pet)
- [azurerm_resource_group](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/resource_group)
- [azurerm_data_factory](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/data_factory)
## Variables
| Name | Description | Default value |
|-|-|-|
| `resource_group_name_prefix` | Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription. | rg |
| `resource_group_location` | Location of the resource group. | eastus |
## Example

View File

@ -0,0 +1,43 @@
resource "random_pet" "rg_name" {
prefix = var.resource_group_name_prefix
}
resource "azurerm_resource_group" "rg" {
location = var.resource_group_location
name = random_pet.rg_name.id
}
resource "random_string" "azurerm_data_factory" {
length = 13
lower = true
numeric = false
special = false
upper = false
}
resource "random_string" "azurerm_storage_account" {
length = 13
lower = true
numeric = false
special = false
upper = false
}
resource "azurerm_storage_account" "example" {
name = random_string.azurerm_storage_account.result
resource_group_name = azurerm_resource_group.rg.name
location = azurerm_resource_group.rg.location
account_tier = "Standard"
account_replication_type = "LRS"
}
resource "azurerm_data_factory" "example" {
name = random_string.azurerm_data_factory.result
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name
identity {
type = "SystemAssigned"
}
}

View File

@ -0,0 +1,7 @@
output "resource_group_name" {
value = azurerm_resource_group.rg.name
}
output "data_factory_name" {
value = azurerm_data_factory.example.name
}

View File

@ -0,0 +1,18 @@
terraform {
required_version = ">=1.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>3.0"
}
random = {
source = "hashicorp/random"
version = "~>3.0"
}
}
}
provider "azurerm" {
features {}
}

View File

@ -0,0 +1,11 @@
variable "resource_group_location" {
type = string
default = "eastus"
description = "Location of the resource group."
}
variable "resource_group_name_prefix" {
type = string
default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}