ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. terraform
    Log in to post
    • All categories
    • OksanaO

      Infrastructure as Code (IaC): Terraform and Bicep

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind infrastructure virtualization terraform bicep
      1
      1 Votes
      1 Posts
      382 Views
      No one has replied
    • stacksofplatesS

      Terratest

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion terraform terratest
      3
      4 Votes
      3 Posts
      399 Views
      jmooreJ

      @stacksofplates said in Terratest:

      I wrote a new article on unit testing Terraform modules with Terratest.

      https://hooks.technology/2020/03/testing-terraform-with-terratest/

      Nice article, I've never played with Teraform yet but its on my list.

    • IRJI

      Terraform - Referencing a subnet from tfstate file

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion terraform
      5
      1 Votes
      5 Posts
      587 Views
      IRJI

      Ok. I figured it out.

      Using the output from above through trial and error this was my answer.

      subnet_id = data.terraform_remote_state.network_configuration.outputs.mysubnet_name_id

      In this example your subnet is named mysubnet_name

    • stacksofplatesS

      Using Make for SysAdmin Work

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion make terraform ansible devops idempotent
      1
      5 Votes
      1 Posts
      443 Views
      No one has replied
    • OksanaO

      Have you created a VM with Terraform? Protect it with Key Vault

      Watching Ignoring Scheduled Pinned Locked Moved Starwind terraform azure
      2
      2 Votes
      2 Posts
      339 Views
      ObsolesceO

      Azure Key Vault is great! It makes using secured credentials in Azure resources easy.

    • OksanaO

      Deploy Azure resources with Terraform

      Watching Ignoring Scheduled Pinned Locked Moved Starwind terraform azure hardware windows server virtual machine
      6
      1 Votes
      6 Posts
      709 Views
      IRJI

      @Obsolesce said in Deploy Azure resources with Terraform:

      @IRJ said in Deploy Azure resources with Terraform:

      @Obsolesce said in Deploy Azure resources with Terraform:

      @IRJ said in Deploy Azure resources with Terraform:

      @Obsolesce

      @IRJ said in Deploy Azure resources with Terraform:

      @Obsolesce

      Yeah good stuff. I have a couple Udemy courses on it.

      Something I didn't see in this article was that Cloud Shell has Terraform built in... so you really don't even need to install it. I try to keep things serverless and source controlled, so I wouldn't want to install Terraform.

      As long as it uses the latest version of terraform. There are many differences between current and last release.

      Screenshot_20190805-163610_Edge.jpg

      Cool. Yeah 11 vs 12 are much different. Alot of things have to be redone

    • wirestyle22W

      Terraform Discussion

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion terraform ansible 2
      3
      0 Votes
      3 Posts
      377 Views
      stacksofplatesS

      A good workflow would be using Packer to build your immutable images with Ansible. That way you don't need to log into the image, just make a new image with your changes using the same process, and then deploy those images with Terraform.

    • OksanaO

      Terraform resource deployment automatization with Azure DevOps – Part 2

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure devops terraform
      1
      1 Votes
      1 Posts
      276 Views
      No one has replied
    • OksanaO

      Automate Terraform deployment of resources with Azure DevOps – Part 1

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure devops terraform
      1
      1 Votes
      1 Posts
      247 Views
      No one has replied
    • scottalanmillerS

      Installing Terraform 0.9.11 on Ubuntu 17.04

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux terraform ubuntu ubuntu 17.04
      6
      0 Votes
      6 Posts
      2k Views
      stacksofplatesS

      You can do some CM in terraform also. You can do remote exec after it finishes like this:

      provisioner "file" { source = "file.config" destination = "/etc/configs/file.confg" }

      'You can ouput info for Ansible (or others) from Terraform after it finishes. For example:

      provisioner "local-exec" { command = "echo ${aws_instance.example.public_dns} >> inventory" } ouput "name" { value = "${aws_instance.example.public_dns}" }
    • 1 / 1