0
0
llucycodes42
The code snippet shows an example of how to create an AzureRM subscription. The subscription uses the provided values for the subscription_id, client_id, and client_secret. The tenant_id is not specified, and should be provided by the azurerm provider.
Shortcut: tf_azurerm
provider "azurerm" {
subscription_id = "subscription_id-example"
client_id = "client_id-example"
client_secret = "client_secret-example"
tenant_id = "tenant_id-example"
}