Terraform Output Values | How to use Terraform Output Values? - Part 5

Поделиться
HTML-код
  • Опубликовано: 22 окт 2024

Комментарии • 23

  • @hinduism2033
    @hinduism2033 Год назад +2

    Can you please make a video on how to use output data to use in another module

  • @kkishore025
    @kkishore025 Год назад

    kudos Rahul .................

  • @Kalaiarasan_Balu
    @Kalaiarasan_Balu Год назад

    Really very helpful

  • @ajitdalvi596
    @ajitdalvi596 11 месяцев назад

    Rahul thanks bro...

    • @RahulWagh
      @RahulWagh  11 месяцев назад

      You are welcome

  • @sundarg3734
    @sundarg3734 3 месяца назад

    What are the values that I can give for cidr while creating vpc and subnets and what are ranges and their pros and cons?

    • @RahulWagh
      @RahulWagh  3 месяца назад

      Use this cidr range calculator to see how the cidr ranges work - mxtoolbox.com/subnetcalculator.aspx

  • @gauravmanshani206
    @gauravmanshani206 2 года назад

    Amazing video sir.
    I have a use case on which i have been working. I have to create folders in GCP and sub folders within folders. But to create sub folders in specific folders we need folder id which is known after apply. I am using for each block to create folders and stuck on creating sub folders. Can you hint towards how can I do this.
    Thank you

  • @isaacambi1914
    @isaacambi1914 Год назад

    Excellent

  • @kirankumarkkk7661
    @kirankumarkkk7661 Год назад

    Ty...sir

  • @devopswisdom
    @devopswisdom 3 года назад

    If we don't want sensitive output to be shown at screen then what is need for that output block. What is use case for sensitive attribute in output block?

    • @RahulWagh
      @RahulWagh  3 года назад

      the output block can be useful when you want to know the external IP address of your EC2 instance which you provisened using terraform. So using output block you do not have to login into aws console to see the external ip address

  • @forexmeter3900
    @forexmeter3900 2 года назад

    Good job!

  • @OrlandoLopez-ew7sn
    @OrlandoLopez-ew7sn 2 года назад

    Amazing content

  • @shivanshusharma20.07
    @shivanshusharma20.07 5 месяцев назад

    How to see output for public ip in gcp? i cannot see command for public ip.
    output "ip" {
    value = google_compute_instance.default.network_interface.0.network_ip
    }
    This is for private

  • @ranu__12
    @ranu__12 3 года назад

    Is there any way to store these values inside any file such as output.tf ?

    • @RahulWagh
      @RahulWagh  3 года назад

      I haven’t tried but would give it a try

  • @manavid86
    @manavid86 2 года назад

    How to use output value in local tags so it can populate on AWS console

    • @RahulWagh
      @RahulWagh  2 года назад

      Probably you could try this -
      output "instance_tags" {
      value = "${lookup(module.ec2_cluster.tags[0], "Name")}"
      }

  • @mannukewat8727
    @mannukewat8727 2 года назад

    where to see output value if sensitive attribute is true?

    • @RahulWagh
      @RahulWagh  2 года назад

      To view the sensitive value first you need to set the value to true .e.g. - sensitive = true
      And you can view the value either by running terraform plan or terraform apply command and it should show onto the terminal