Difference between revisions of "Terraform module: ec2-instance"

From wikieduonline
Jump to navigation Jump to search
 
(5 intermediate revisions by 2 users not shown)
Line 7: Line 7:
  
 
  [[Terraform modules|module]] "ec2_instance" {
 
  [[Terraform modules|module]] "ec2_instance" {
   source  = "terraform-aws-modules/ec2-instance/aws"
+
   source  = "[[terraform-aws-modules/ec2-instance/aws]]"
 
   version = "~> 3.0"
 
   version = "~> 3.0"
 
   
 
   
Line 27: Line 27:
  
 
== Related ==
 
== Related ==
* [[Terraform resource: aws_instance]]
+
* <code>[[Terraform resource: aws_instance]]</code>
 
* [[Terraform: AWS instance example with aws ami lookup and key name]]
 
* [[Terraform: AWS instance example with aws ami lookup and key name]]
 +
* <code>[[ebs_block_device]]</code>
 +
* [[metadata_options]] Default: { "http_endpoint": "enabled", "http_put_response_hop_limit": 1, "[[http_tokens]]": "optional" }
  
 
== See also ==
 
== See also ==
 +
* {{tf ec2}}
 
* {{terraform resources}}
 
* {{terraform resources}}
 
* {{terraform aws resources}}
 
* {{terraform aws resources}}
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Latest revision as of 09:44, 28 June 2024

Module: https://registry.terraform.io/modules/terraform-aws-modules/ec2-instance/aws/latest?tab=inputs

Resources:


module "ec2_instance" {
  source  = "terraform-aws-modules/ec2-instance/aws"
  version = "~> 3.0"

  name = "single-instance" 

  ami                    = "ami-ebd02392"
  instance_type          = "t2.micro"
  key_name               = "user1"
  monitoring             = true
  vpc_security_group_ids = ["sg-12345678"]
  subnet_id              = "subnet-eddcdzz4" 

  tags = {
    Terraform   = "true"
    Environment = "dev"
  }
}

Related[edit]

See also[edit]

Advertising: