Terraform Test - Terraform v1.6.0 - Native Test Framework for IaC, Explained with Demo

Поділитися
Вставка
  • Опубліковано 13 вер 2024

КОМЕНТАРІ • 14

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

    Excellent video, thanks for the info!

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

    Big fan of your videos.......

  • @KrishnaKumar-qj1xy
    @KrishnaKumar-qj1xy 10 місяців тому

    Thanks for the video sir😊

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

    Hi! Great information. What is the best way to ensure that resources are created using the organization’s naming conventions? Do you think we need to establish some form of validation? Thanks.

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

      Thanks for feedback, for that... we need to create regular expression based validations on all the variables ( like how I shown in example), write tf test case of expect_failures...pass the non complaint tfvars to prove system is following validations

  • @mrindia2574
    @mrindia2574 8 місяців тому

    thanks sir

    • @learnwithgvr
      @learnwithgvr  8 місяців тому

      Cheers and keep learning

    • @mrindia2574
      @mrindia2574 8 місяців тому

      @@learnwithgvr sir do you do private classes

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

    Hi. Thanks for the informative video. If we have our variables file inside the modules folder, and we do not have any variables file outside(from where we will source this module), is there any way we can still pass the custom variables to the run block?

    • @learnwithgvr
      @learnwithgvr  8 місяців тому

      Thanks for feedback. Sorry i missed to reply.. if vars file inside the module means, no way to pass from outside; in a way its hard coded.! if you are overriding from outside then you can declare variables in tftest file globally or in run block and call modules from run block. Hope this clarifies