Terraform Workflow with Azure: Write, Plan and Apply

Поділитися
Вставка
  • Опубліковано 27 сер 2024
  • This is the second part of a multi-part series on Terraform with Azure. In this video, we create a simple project, starting with an overview of the Terraform workflow of writing a configuration file, planning a deployment, and then applying the configuration to create a resource in Azure.
    Links
    Zero to Hero with Azure Virtual Desktop www.udemy.com/...
    Hybrid Identity with Windows AD and Azure AD
    www.udemy.com/...
    Blog
    www.ciraltos.c...
    Terraform Provider Site registry.terra...

КОМЕНТАРІ • 20

  • @alwinm5179
    @alwinm5179 Місяць тому

    Awesome Video. This the video I tried to find for a while and finally found it. Thanks for making this.

  • @JodyWheat
    @JodyWheat Рік тому +3

    I didn't know how to get started until I watched this video. It is exactly what I needed!

  • @soumztelugu
    @soumztelugu 10 місяців тому

    No one can explain like you Travis! Thanku so much

  • @lucasspencer1847
    @lucasspencer1847 2 роки тому

    Travis you're an absolute wizard! I needed this video.
    Thank you!

  • @tahmeedhossain2910
    @tahmeedhossain2910 Рік тому

    Exactly what I was looking for. Thank you so much for this.

  • @YiannosG
    @YiannosG 2 роки тому

    Thanks for both these videos, much appreciated.

  • @MinlayFeldrum
    @MinlayFeldrum 2 роки тому +1

    Great video, thank you very much.

  • @weixing4520
    @weixing4520 Рік тому

    Excellent !! Thank you!!

  • @bhavanishankar8300
    @bhavanishankar8300 Рік тому

    Really Wonderful!

  • @kartheek2048
    @kartheek2048 2 роки тому

    Thanks man, you helped a lot.

  • @SandeepYatri
    @SandeepYatri 2 роки тому

    Thank You for wonderful videos!!

    • @Ciraltos
      @Ciraltos  2 роки тому

      Glad you like them!

  • @andyhuynh2450
    @andyhuynh2450 Рік тому

    This is such a great video. Is there a way to lock Apply workflow with an approval process in vscode?

  • @sayantansaha3427
    @sayantansaha3427 Рік тому

    Thanks for the video ,, helped a lot,, just one question , in this video time 6:17 you changed the configuration options with features . Could you please elaborate why we need to do this ? with configuration option I ran and facing error, please explain . thanks in advance

  • @sidzhang
    @sidzhang 2 роки тому

    06:11 why we need to remove this and replace with feature{} ?

  • @adamzachary6947
    @adamzachary6947 2 роки тому

    I have a quick question, I'm fairly new to TF.
    I'm building a solution and creating bunch of resource groups and some other resources in each resource group.
    Everything works fine, but now I want to include a azurerm_management_lock to my resource groups.
    It keeps failing on me. with a strange error.
    Error: parsing "resource_group_lock": parsing scope prefix: unable to find the scope prefix from the value "resource_group_lock" with the regex "^((.){1,})/providers/Microsoft.Authorization/locks/(.){1,}"
    My Code
    resource "azurerm_resource_group" "rg" {
    count = var.create_condition == true ?length(var.RG_Name):0
    name = element(var.RG_Name, count.index)
    location = var.RG_Location
    }
    resource "azurerm_management_lock" "rg-level" {
    count = var.create_condition == true ? length(var.RG_Name):0
    name = var.lock_level_name
    scope = azurerm_resource_group.rg[count.index].id
    lock_level = var.lock_level
    }

  • @dhnaveen
    @dhnaveen Рік тому

    Hi Travis, I get the following error while I reun the az exyension add command
    Unable to get extension index.
    Please ensure you have network connection. Error detail: HTTPSConnectionPool(host='azcliextensionsync.blob.core.windows.net', port=443): Max retries exceeded with url: /index1/index.json (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))

  • @megaa1c
    @megaa1c 2 роки тому

    hi @Travis. are you going to update your zero to hero course with a lesson on how to deploy AVD via terraform and azure devops pipelines ? reckon it might be useful for many who want to automate AVD deployment using custom image build and terraform

    • @makeitcloudy
      @makeitcloudy 2 роки тому

      seems there is no point reinventig the wheel where there are examples of doing this on github among the go-euc for example