MyGit

hashicorp/terraform-provider-azurerm

Fork: 4633 Star: 4592 (更新于 2024-11-01 17:06:43)

license: MPL-2.0

Language: Go .

Terraform provider for Azure Resource Manager

最后发布版本: v4.4.0 ( 2024-10-04 14:58:24)

官方网址 GitHub网址

Terraform logo

Terraform Provider for Azure (Resource Manager)

The AzureRM Terraform Provider allows managing resources within Azure Resource Manager.

When using version 4.0 of the AzureRM Provider we recommend using the latest version of Terraform Core (the latest version can be found here).

Usage Example

# 1. Specify the version of the AzureRM Provider to use
terraform {
  required_providers {
    azurerm = {
      source = "hashicorp/azurerm"
      version = "=3.0.1"
    }
  }
}

# 2. Configure the AzureRM Provider
provider "azurerm" {
  # The AzureRM Provider supports authenticating using via the Azure CLI, a Managed Identity
  # and a Service Principal. More information on the authentication methods supported by
  # the AzureRM Provider can be found here:
  # https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs#authenticating-to-azure

  # The features block allows changing the behaviour of the Azure Provider, more
  # information can be found here:
  # https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/features-block
  features {}
}

# 3. Create a resource group
resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

# 4. Create a virtual network within the resource group
resource "azurerm_virtual_network" "example" {
  name                = "example-network"
  resource_group_name = azurerm_resource_group.example.name
  location            = azurerm_resource_group.example.location
  address_space       = ["10.0.0.0/16"]
}

Developing & Contributing to the Provider

The DEVELOPER.md file is a basic outline on how to build and develop the provider while more detailed guides geared towards contributors can be found in the /contributing directory of this repository.

最近版本更新:(数据更新于 2024-10-09 20:37:21)

2024-10-04 14:58:24 v4.4.0

2024-09-20 13:35:04 v4.3.0

2024-09-13 12:16:51 v4.2.0

2024-09-06 10:54:43 v4.1.0

2024-08-24 06:11:22 v4.0.1

2024-08-23 06:07:17 v4.0.0

2024-08-16 13:57:13 v3.116.0

2024-08-09 16:47:16 v3.115.0

2024-08-02 01:40:24 v3.114.0

2024-07-19 13:29:47 v3.113.0

主题(topics):

azure, azure-resource-manager, terraform, terraform-provider

hashicorp/terraform-provider-azurerm同语言 Go最近更新仓库

2024-11-21 22:49:20 containerd/containerd

2024-11-21 13:50:50 XTLS/Xray-core

2024-11-21 07:36:18 kubernetes/kubernetes

2024-11-21 06:27:30 ollama/ollama

2024-11-21 05:17:55 Melkeydev/go-blueprint

2024-11-21 04:04:03 dolthub/dolt