Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

Terraform - Language: Resource

Back


Resources


Resource Blocks

# declear an ec2 instance

resource "aws_instance" "web" {
  ami = "ami-a1b2c3d4"
  instance_type = "t2.micro"
}

Resource Types

Providers

Resource Arguments


Documentation for Resource Types


Meta-Arguments


Removing Resources

removed {
  from = aws_instance.example

  lifecycle {
    destroy = false
  }
}

TOP