Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »


depends_on
# 4- create an Ubuntu instance
resource "aws_instance" "ubuntu1" {
        #ami = "ami-403e2524"
        ami = "${var.ubuntu_ami}"
        instance_type = "t2.nano"
        key_name = "${var.key_pair}"
        #key_name = "terraformkeypair2"
        subnet_id = "${aws_subnet.mgmt.id}"
        security_groups = ["${aws_security_group.allow_ssh.id}"]
        availability_zone = "${var.availability_zone}"
        associate_public_ip_address = true
        tags {
         Name = "${var.name}-Ubuntu1-instance"
        }
}

#6- add Network interface to the vSRX Instance
resource "aws_network_interface" "eth1" {
    subnet_id       = "${aws_subnet.private2.id}"
    #private_ips     = ["10.0.2.14"]
    #security_groups = ["${aws_security_group.allow_IPSec.id}"]
    attachment {
      instance     = "${aws_instance.ubuntu1.id}"
      device_index = 1
    }
    depends_on = ["aws_instance.ubuntu1"]
}


  • No labels