Unable to setup Azure migrate project

Bhagya Shree Chauhan 1 Reputation point
2024-03-22T14:27:37.58+00:00

Hi,

I am unable to setup Azure migrate project using terraform code. Please let me know how to create azure migrate project using terraform.

Thanks & Regards,

Bhagya Shree

Azure Migrate
Azure Migrate
A central hub of Azure cloud migration services and tools to discover, assess, and migrate workloads to the cloud.
718 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Marcin Policht 10,840 Reputation points MVP
    2024-03-22T17:00:11.6033333+00:00

    Refer to https://learn.microsoft.com/en-us/azure/templates/microsoft.migrate/projects?pivots=deployment-language-terraform

    resource "azapi_resource" "symbolicname" {
      type = "Microsoft.Migrate/projects@2018-02-02"
      name = "string"
      location = "string"
      parent_id = "string"
        tagName1 = "tagValue1"
        tagName2 = "tagValue2"
      }
      body = jsonencode({
        properties = {
          customerWorkspaceId = "string"
          customerWorkspaceLocation = "string"
          provisioningState = "string"
        }
        eTag = "string"
      })
    }
    

    hth

    Marcin

    0 comments No comments

  2. Marcin Policht 10,840 Reputation points MVP
    2024-03-22T17:01:27.3966667+00:00

    Refer to https://learn.microsoft.com/en-us/azure/templates/microsoft.migrate/projects?pivots=deployment-language-terraform

    resource "azapi_resource" "symbolicname" {
      type = "Microsoft.Migrate/projects@2018-02-02"
      name = "string"
      location = "string"
      parent_id = "string"
        tagName1 = "tagValue1"
        tagName2 = "tagValue2"
      }
      body = jsonencode({
        properties = {
          customerWorkspaceId = "string"
          customerWorkspaceLocation = "string"
          provisioningState = "string"
        }
        eTag = "string"
      })
    }
    
    0 comments No comments

  3. Marcin Policht 10,840 Reputation points MVP
    2024-03-22T17:01:54.1133333+00:00
    0 comments No comments