terraform-azure

Provision Azure infrastructure with Terraform.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "terraform-azure" with this command: npx skills add bagelhole/devops-security-agent-skills/bagelhole-devops-security-agent-skills-terraform-azure

Terraform Azure

Provision Azure infrastructure with Terraform.

Provider Configuration

terraform { required_providers { azurerm = { source = "hashicorp/azurerm" version = "~> 3.0" } } backend "azurerm" { resource_group_name = "tfstate" storage_account_name = "tfstate12345" container_name = "tfstate" key = "prod.terraform.tfstate" } }

provider "azurerm" { features {} }

Example Resources

resource "azurerm_resource_group" "main" { name = "myapp-rg" location = "East US" }

resource "azurerm_virtual_network" "main" { name = "myapp-vnet" address_space = ["10.0.0.0/16"] location = azurerm_resource_group.main.location resource_group_name = azurerm_resource_group.main.name }

Best Practices

  • Use remote state in Azure Storage

  • Implement resource naming conventions

  • Use data sources for existing resources

  • Tag all resources

  • Use modules for reusability

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

linux-administration

No summary provided by upstream source.

Repository SourceNeeds Review
Security

sops-encryption

No summary provided by upstream source.

Repository SourceNeeds Review
Security

linux-hardening

No summary provided by upstream source.

Repository SourceNeeds Review
Security

vpn-setup

No summary provided by upstream source.

Repository SourceNeeds Review