FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

Azure Service Management Provider

The Azure Service Management provider is used to interact with the many resources supported by Azure. The provider needs to be configured with a publish settings file and optionally a subscription ID before it can be used.

Use the navigation to the left to read about the available resources.

Example Usage

# Configure the Azure Provider
provider "azure" {
  publish_settings = "${file("credentials.publishsettings")}"
}

# Create a web server
resource "azure_instance" "web" {
    ...
}

Argument Reference

The following arguments are supported:

These arguments are supported for backwards compatibility, and may be removed in a future version:

Testing:

The following environment variables must be set for the running of the acceptance test suite:


See the source of this document at Terraform.io