https://github.com/riskified/control-center-scheduled-export-terraform
Terraform for scheduled exports of Control Center data.
https://github.com/riskified/control-center-scheduled-export-terraform
Last synced: 6 months ago
JSON representation
Terraform for scheduled exports of Control Center data.
- Host: GitHub
- URL: https://github.com/riskified/control-center-scheduled-export-terraform
- Owner: Riskified
- Created: 2024-07-08T15:08:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-18T22:08:19.000Z (over 1 year ago)
- Last Synced: 2025-06-16T19:42:10.064Z (about 1 year ago)
- Language: HCL
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
## Requirements
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.0 |
| [azurerm](#requirement\_azurerm) | >= 3.71.0, < 4.0.0 |
## Providers
| Name | Version |
|------|---------|
| [azurerm](#provider\_azurerm) | 3.111.0 |
## Modules
No modules.
## Resources
| Name | Type |
|------|------|
| [azurerm_resource_group.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/resource_group) | resource |
| [azurerm_storage_account.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_account) | resource |
| [azurerm_storage_container.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_container) | resource |
| [azurerm_storage_container_immutability_policy.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_container_immutability_policy) | resource |
| [azurerm_storage_account_blob_container_sas.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/storage_account_blob_container_sas) | data source |
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [container\_name](#input\_container\_name) | Name of the storage container | `string` | `"test-container"` | no |
| [ip\_rules](#input\_ip\_rules) | List of IP addresses to whitelist | `list(string)` | `[]` | no |
| [resource\_group\_location](#input\_resource\_group\_location) | Location of the resource group | `string` | `"eastus"` | no |
| [resource\_group\_name](#input\_resource\_group\_name) | Name of the resource group | `string` | `"test-resource-group"` | no |
| [resource\_group\_tags](#input\_resource\_group\_tags) | Tags for the resource group | `map(string)` |
{
"environment": "dev"
} | no |
| [storage\_account\_name](#input\_storage\_account\_name) | Name of the storage account | `string` | `"stsrgaccount"` | no |
| [storage\_account\_tags](#input\_storage\_account\_tags) | Tags for the storage account | `map(string)` | {
"environment": "dev"
} | no |
## Outputs
| Name | Description |
|------|-------------|
| [container\_url](#output\_container\_url) | The URL of the storage container |
| [sas\_query\_url](#output\_sas\_query\_url) | The SAS query URL for the SAS token |