Azure DevSpace Controller
This page shows how to write Terraform for DevSpace Controller and write them securely.
azurerm_devspace_controller (Terraform)
The Controller in DevSpace can be configured in Terraform with the resource name azurerm_devspace_controller. The following sections describe 2 examples of how to use the resource and its parameters.
Example Usage from GitHub
resource "azurerm_devspace_controller" "this" {
location = var.location
name = var.name
resource_group_name = var.resource_group_name
sku_name = var.sku_name
tags = var.tags
resource "azurerm_devspace_controller" "this" {
location = var.location
name = var.name
resource_group_name = var.resource_group_name
sku_name = var.sku_name
tags = var.tags
Parameters
-
data_plane_fqdnoptional computed - string -
host_suffixoptional computed - string -
idoptional computed - string -
locationrequired - string -
namerequired - string -
resource_group_namerequired - string -
sku_namerequired - string -
tagsoptional - map from string to string -
target_container_host_credentials_base64required - string -
target_container_host_resource_idrequired - string -
timeoutssingle block
Explanation in Terraform Registry
Manages a DevSpace Controller.
NOTE: Microsoft will be retiring Azure Dev Spaces on 31 October 2023, please see the product documentation for more information. !> NOTE: The Azure API no longer allows provisioning new DevSpace Controllers - as such this resource exists only to allow existing users to continue managing these in Terraform at this time. Support for the
azurerm_devspace_controllerresource will be removed in version 3.0 of the Azure Provider.
Azure Resource Manager Example
Azure Resource Manager code does not have the related resource.
Frequently asked questions
What is Azure DevSpace Controller?
Azure DevSpace Controller is a resource for DevSpace of Microsoft Azure. Settings can be wrote in Terraform.
Where can I find the example code for the Azure DevSpace Controller?
For Terraform, the kevinhead/azurerm and niveklabs/azurerm source code examples are useful. See the Terraform Example section for further details.