diff --git a/quickstart/101-container-instance-multiple-containers/README.md b/quickstart/101-container-instance-multiple-containers/README.md new file mode 100644 index 000000000..7a043dec4 --- /dev/null +++ b/quickstart/101-container-instance-multiple-containers/README.md @@ -0,0 +1,18 @@ +# Azure Container Group + +This template deploys an Azure Container Group with two containers. + +## Terraform resource types + +- [random_pet](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/pet) +- [azurerm_resource_group](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/resource_group) +- [azurerm_container_group](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/container_group) + +## Variables + +| Name | Description | Default | +|-|-|-| +| `resource_group_name_prefix` | Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription. | rg | +| `resource_group_location` | Location of the resource group. | eastus | + +## Example \ No newline at end of file diff --git a/quickstart/101-container-instance-multiple-containers/main.tf b/quickstart/101-container-instance-multiple-containers/main.tf new file mode 100644 index 000000000..757321b74 --- /dev/null +++ b/quickstart/101-container-instance-multiple-containers/main.tf @@ -0,0 +1,44 @@ +resource "random_pet" "rg_name" { + prefix = var.resource_group_name_prefix +} + +resource "azurerm_resource_group" "rg" { + location = var.resource_group_location + name = random_pet.rg_name.id +} + +resource "random_pet" "azurerm_container_group_name" { + prefix = "cont" +} + +resource "azurerm_container_group" "example" { + name = "${random_pet.azurerm_container_group_name.id}-examplecont" + location = azurerm_resource_group.rg.location + resource_group_name = azurerm_resource_group.rg.name + ip_address_type = "Public" + dns_name_label = "${random_pet.azurerm_container_group_name.id}-examplecont" + os_type = "Linux" + + container { + name = "hw" + image = "mcr.microsoft.com/azuredocs/aci-helloworld:latest" + cpu = "0.5" + memory = "1.5" + + ports { + port = 80 + protocol = "TCP" + } + } + + container { + name = "sidecar" + image = "mcr.microsoft.com/azuredocs/aci-tutorial-sidecar" + cpu = "0.5" + memory = "1.5" + } + + tags = { + environment = "testing" + } +} \ No newline at end of file diff --git a/quickstart/101-container-instance-multiple-containers/outputs.tf b/quickstart/101-container-instance-multiple-containers/outputs.tf new file mode 100644 index 000000000..8c36e4dd2 --- /dev/null +++ b/quickstart/101-container-instance-multiple-containers/outputs.tf @@ -0,0 +1,15 @@ +output "resource_group_name" { + value = azurerm_resource_group.rg.name +} + +output "container_group_name" { + value = azurerm_container_group.example.name +} + +output "ip_address" { + value = azurerm_container_group.example.ip_address +} + +output "fqdn" { + value = azurerm_container_group.example.fqdn +} \ No newline at end of file diff --git a/quickstart/101-container-instance-multiple-containers/providers.tf b/quickstart/101-container-instance-multiple-containers/providers.tf new file mode 100644 index 000000000..4fd5f6ba7 --- /dev/null +++ b/quickstart/101-container-instance-multiple-containers/providers.tf @@ -0,0 +1,16 @@ +terraform { + required_version = ">=1.0" + required_providers { + azurerm = { + source = "hashicorp/azurerm" + version = "~>3.0" + } + random = { + source = "hashicorp/random" + version = "~>3.0" + } + } +} +provider "azurerm" { + features {} +} \ No newline at end of file diff --git a/quickstart/101-container-instance-multiple-containers/variables.tf b/quickstart/101-container-instance-multiple-containers/variables.tf new file mode 100644 index 000000000..1a8c6abba --- /dev/null +++ b/quickstart/101-container-instance-multiple-containers/variables.tf @@ -0,0 +1,11 @@ +variable "resource_group_location" { + type = string + default = "eastus" + description = "Location of the resource group." +} + +variable "resource_group_name_prefix" { + type = string + default = "rg" + description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription." +} \ No newline at end of file