Start Terraform from zero

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • terraform

    Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.

    Terraform - Automate Infrastructure on Any Cloud. https://www.terraform.io/

  • terraform-provider-azurerm

    Terraform provider for Azure Resource Manager

    # Resource Group # https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/resource_group resource "azurerm_resource_group" "example" { name = "example" location = "West Europe" } # Key Vault resource "azurerm_key_vault" "kv" { name = "KV" location = azurerm_resource_group.example.location resource_group_name = azurerm_resource_group.example.name enabled_for_disk_encryption = false enabled_for_deployment = true enabled_for_template_deployment = true tenant_id = data.azurerm_client_config.current.tenant_id sku_name = "standard" network_acls { default_action = "Allow" bypass = "AzureServices" } } # Service bus namespace resource "azurerm_servicebus_namespace" "example" { name = "example" resource_group_name = azurerm_resource_group.example.name location = azurerm_resource_group.example.location sku = "Standard" } # Service bus topic resource "azurerm_servicebus_topic" "example" { name = "example" namespace_id = azurerm_servicebus_namespace.metro60_namespace.id enable_partitioning = true }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts