changes
This commit is contained in:
parent
34940790ac
commit
84952564f0
60
main.tf
60
main.tf
@ -1,63 +1,3 @@
|
|||||||
provider "aws" {
|
provider "aws" {
|
||||||
region = "us-east-1" # Change this to your preferred region
|
region = "us-east-1" # Change this to your preferred region
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "aws_security_group" "ec2_sg" {
|
|
||||||
name = "aviary-sg"
|
|
||||||
description = "Allow SSH inbound traffic"
|
|
||||||
|
|
||||||
ingress {
|
|
||||||
from_port = 22
|
|
||||||
to_port = 22
|
|
||||||
protocol = "tcp"
|
|
||||||
cidr_blocks = ["108.237.185.23/32"]
|
|
||||||
}
|
|
||||||
|
|
||||||
ingress {
|
|
||||||
from_port = 80
|
|
||||||
to_port = 80
|
|
||||||
protocol = "tcp"
|
|
||||||
cidr_blocks = ["0.0.0.0/0"]
|
|
||||||
}
|
|
||||||
|
|
||||||
ingress {
|
|
||||||
from_port = 443
|
|
||||||
to_port = 443
|
|
||||||
protocol = "tcp"
|
|
||||||
cidr_blocks = ["0.0.0.0/0"]
|
|
||||||
}
|
|
||||||
|
|
||||||
ingress {
|
|
||||||
from_port = 51820
|
|
||||||
to_port = 51820
|
|
||||||
protocol = "udp"
|
|
||||||
cidr_blocks = ["0.0.0.0/0"]
|
|
||||||
}
|
|
||||||
|
|
||||||
egress {
|
|
||||||
from_port = 0
|
|
||||||
to_port = 0
|
|
||||||
protocol = "-1"
|
|
||||||
cidr_blocks = ["0.0.0.0/0"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "aws_instance" "ec2_vm" {
|
|
||||||
ami = "ami-02a53b0d62d37a757" # Replace with a valid AMI ID for your region
|
|
||||||
instance_type = "t2.micro" # Free tier eligible instance type
|
|
||||||
security_groups = [aws_security_group.ec2_sg.name]
|
|
||||||
key_name = "theocorp" # Replace with your AWS key pair name
|
|
||||||
|
|
||||||
tags = {
|
|
||||||
Name = "aviary"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "aws_eip" "ec2_eip" {
|
|
||||||
instance = aws_instance.ec2_vm.id
|
|
||||||
}
|
|
||||||
|
|
||||||
output "instance_public_ip" {
|
|
||||||
description = "Public IP of the EC2 instance"
|
|
||||||
value = aws_eip.ec2_eip.public_ip
|
|
||||||
}
|
|
||||||
19
netbird.tf
Normal file
19
netbird.tf
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
resource "aws_instance" "ec2_vm_netbird" {
|
||||||
|
ami = "ami-02a53b0d62d37a757" # Replace with a valid AMI ID for your region
|
||||||
|
instance_type = "t2.micro" # Free tier eligible instance type
|
||||||
|
security_groups = [aws_security_group.ec2_sg.name]
|
||||||
|
key_name = "theocorp" # Replace with your AWS key pair name
|
||||||
|
|
||||||
|
tags = {
|
||||||
|
Name = "netbird"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_eip" "ec2_eip_netbird" {
|
||||||
|
instance = aws_instance.ec2_vm_netbird.id
|
||||||
|
}
|
||||||
|
|
||||||
|
output "instance_public_ip_netbird" {
|
||||||
|
description = "Public IP of the Netbird instance"
|
||||||
|
value = aws_eip.ec2_eip_netbird.public_ip
|
||||||
|
}
|
||||||
20
pangolin.tf
Normal file
20
pangolin.tf
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
resource "aws_instance" "ec2_vm" {
|
||||||
|
ami = "ami-02a53b0d62d37a757" # Replace with a valid AMI ID for your region
|
||||||
|
instance_type = "t2.micro" # Free tier eligible instance type
|
||||||
|
security_groups = [aws_security_group.ec2_sg.name]
|
||||||
|
key_name = "theocorp" # Replace with your AWS key pair name
|
||||||
|
|
||||||
|
tags = {
|
||||||
|
Name = "pangolin"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_eip" "ec2_eip" {
|
||||||
|
instance = aws_instance.ec2_vm.id
|
||||||
|
}
|
||||||
|
|
||||||
|
output "instance_public_ip" {
|
||||||
|
description = "Public IP of the EC2 instance"
|
||||||
|
value = aws_eip.ec2_eip.public_ip
|
||||||
|
}
|
||||||
75
sg.tf
Normal file
75
sg.tf
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
|
||||||
|
resource "aws_security_group" "ec2_sg" {
|
||||||
|
name = "aviary-sg"
|
||||||
|
description = "Allow SSH inbound traffic"
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 22
|
||||||
|
to_port = 22
|
||||||
|
protocol = "tcp"
|
||||||
|
cidr_blocks = ["108.237.185.23/32"]
|
||||||
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 80
|
||||||
|
to_port = 80
|
||||||
|
protocol = "tcp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 443
|
||||||
|
to_port = 443
|
||||||
|
protocol = "tcp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 51820
|
||||||
|
to_port = 51820
|
||||||
|
protocol = "udp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 10000
|
||||||
|
to_port = 10000
|
||||||
|
protocol = "tcp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 33073
|
||||||
|
to_port = 33073
|
||||||
|
protocol = "tcp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 33080
|
||||||
|
to_port = 33080
|
||||||
|
protocol = "tcp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 3478
|
||||||
|
to_port = 3478
|
||||||
|
protocol = "udp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
from_port = 49152
|
||||||
|
to_port = 65535
|
||||||
|
protocol = "udp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
egress {
|
||||||
|
from_port = 0
|
||||||
|
to_port = 0
|
||||||
|
protocol = "-1"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,12 +1,16 @@
|
|||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.10.5",
|
"terraform_version": "1.10.5",
|
||||||
"serial": 35,
|
"serial": 48,
|
||||||
"lineage": "1548454c-cf7f-9153-d2ca-6d37af1f5a24",
|
"lineage": "1548454c-cf7f-9153-d2ca-6d37af1f5a24",
|
||||||
"outputs": {
|
"outputs": {
|
||||||
"instance_public_ip": {
|
"instance_public_ip": {
|
||||||
"value": "44.210.184.15",
|
"value": "44.210.184.15",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"instance_public_ip_netbird": {
|
||||||
|
"value": "18.211.242.110",
|
||||||
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"resources": [
|
"resources": [
|
||||||
@ -23,7 +27,7 @@
|
|||||||
"allocation_id": "eipalloc-0f33067513f18436b",
|
"allocation_id": "eipalloc-0f33067513f18436b",
|
||||||
"arn": "arn:aws:ec2:us-east-1:874570603861:elastic-ip/eipalloc-0f33067513f18436b",
|
"arn": "arn:aws:ec2:us-east-1:874570603861:elastic-ip/eipalloc-0f33067513f18436b",
|
||||||
"associate_with_private_ip": null,
|
"associate_with_private_ip": null,
|
||||||
"association_id": "eipassoc-0c1dea378de308774",
|
"association_id": "eipassoc-09b2937ea57df42e0",
|
||||||
"carrier_ip": "",
|
"carrier_ip": "",
|
||||||
"customer_owned_ip": "",
|
"customer_owned_ip": "",
|
||||||
"customer_owned_ipv4_pool": "",
|
"customer_owned_ipv4_pool": "",
|
||||||
@ -39,7 +43,7 @@
|
|||||||
"public_dns": "ec2-44-210-184-15.compute-1.amazonaws.com",
|
"public_dns": "ec2-44-210-184-15.compute-1.amazonaws.com",
|
||||||
"public_ip": "44.210.184.15",
|
"public_ip": "44.210.184.15",
|
||||||
"public_ipv4_pool": "amazon",
|
"public_ipv4_pool": "amazon",
|
||||||
"tags": null,
|
"tags": {},
|
||||||
"tags_all": {},
|
"tags_all": {},
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"vpc": true
|
"vpc": true
|
||||||
@ -53,6 +57,49 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "aws_eip",
|
||||||
|
"name": "ec2_eip_netbird",
|
||||||
|
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"address": null,
|
||||||
|
"allocation_id": "eipalloc-0c63042a76eff7889",
|
||||||
|
"arn": "arn:aws:ec2:us-east-1:874570603861:elastic-ip/eipalloc-0c63042a76eff7889",
|
||||||
|
"associate_with_private_ip": null,
|
||||||
|
"association_id": "eipassoc-0e3c1e5a6282ecefe",
|
||||||
|
"carrier_ip": "",
|
||||||
|
"customer_owned_ip": "",
|
||||||
|
"customer_owned_ipv4_pool": "",
|
||||||
|
"domain": "vpc",
|
||||||
|
"id": "eipalloc-0c63042a76eff7889",
|
||||||
|
"instance": "i-0d86c676daa4ad5c7",
|
||||||
|
"ipam_pool_id": null,
|
||||||
|
"network_border_group": "us-east-1",
|
||||||
|
"network_interface": "eni-0b11f199514741ce9",
|
||||||
|
"private_dns": "ip-172-31-81-102.ec2.internal",
|
||||||
|
"private_ip": "172.31.81.102",
|
||||||
|
"ptr_record": "",
|
||||||
|
"public_dns": "ec2-18-211-242-110.compute-1.amazonaws.com",
|
||||||
|
"public_ip": "18.211.242.110",
|
||||||
|
"public_ipv4_pool": "amazon",
|
||||||
|
"tags": {},
|
||||||
|
"tags_all": {},
|
||||||
|
"timeouts": null,
|
||||||
|
"vpc": true
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjoxODAwMDAwMDAwMDAsInJlYWQiOjkwMDAwMDAwMDAwMCwidXBkYXRlIjozMDAwMDAwMDAwMDB9fQ==",
|
||||||
|
"dependencies": [
|
||||||
|
"aws_instance.ec2_vm_netbird",
|
||||||
|
"aws_security_group.ec2_sg"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"mode": "managed",
|
"mode": "managed",
|
||||||
"type": "aws_instance",
|
"type": "aws_instance",
|
||||||
@ -142,8 +189,8 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"private_ip": "172.31.83.214",
|
"private_ip": "172.31.83.214",
|
||||||
"public_dns": "ec2-44-204-11-42.compute-1.amazonaws.com",
|
"public_dns": "ec2-44-210-184-15.compute-1.amazonaws.com",
|
||||||
"public_ip": "44.204.11.42",
|
"public_ip": "44.210.184.15",
|
||||||
"root_block_device": [
|
"root_block_device": [
|
||||||
{
|
{
|
||||||
"delete_on_termination": true,
|
"delete_on_termination": true,
|
||||||
@ -167,10 +214,147 @@
|
|||||||
"spot_instance_request_id": "",
|
"spot_instance_request_id": "",
|
||||||
"subnet_id": "subnet-02a8be59a072d7d45",
|
"subnet_id": "subnet-02a8be59a072d7d45",
|
||||||
"tags": {
|
"tags": {
|
||||||
"Name": "aviary"
|
"Name": "pangolin"
|
||||||
},
|
},
|
||||||
"tags_all": {
|
"tags_all": {
|
||||||
"Name": "aviary"
|
"Name": "pangolin"
|
||||||
|
},
|
||||||
|
"tenancy": "default",
|
||||||
|
"timeouts": null,
|
||||||
|
"user_data": null,
|
||||||
|
"user_data_base64": null,
|
||||||
|
"user_data_replace_on_change": false,
|
||||||
|
"volume_tags": null,
|
||||||
|
"vpc_security_group_ids": [
|
||||||
|
"sg-0b751004f80b5fe74"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6MTIwMDAwMDAwMDAwMCwicmVhZCI6OTAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH0sInNjaGVtYV92ZXJzaW9uIjoiMSJ9",
|
||||||
|
"dependencies": [
|
||||||
|
"aws_security_group.ec2_sg"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "aws_instance",
|
||||||
|
"name": "ec2_vm_netbird",
|
||||||
|
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 1,
|
||||||
|
"attributes": {
|
||||||
|
"ami": "ami-02a53b0d62d37a757",
|
||||||
|
"arn": "arn:aws:ec2:us-east-1:874570603861:instance/i-0d86c676daa4ad5c7",
|
||||||
|
"associate_public_ip_address": true,
|
||||||
|
"availability_zone": "us-east-1a",
|
||||||
|
"capacity_reservation_specification": [
|
||||||
|
{
|
||||||
|
"capacity_reservation_preference": "open",
|
||||||
|
"capacity_reservation_target": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cpu_core_count": 1,
|
||||||
|
"cpu_options": [
|
||||||
|
{
|
||||||
|
"amd_sev_snp": "",
|
||||||
|
"core_count": 1,
|
||||||
|
"threads_per_core": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cpu_threads_per_core": 1,
|
||||||
|
"credit_specification": [
|
||||||
|
{
|
||||||
|
"cpu_credits": "standard"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"disable_api_stop": false,
|
||||||
|
"disable_api_termination": false,
|
||||||
|
"ebs_block_device": [],
|
||||||
|
"ebs_optimized": false,
|
||||||
|
"enable_primary_ipv6": null,
|
||||||
|
"enclave_options": [
|
||||||
|
{
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ephemeral_block_device": [],
|
||||||
|
"get_password_data": false,
|
||||||
|
"hibernation": false,
|
||||||
|
"host_id": "",
|
||||||
|
"host_resource_group_arn": null,
|
||||||
|
"iam_instance_profile": "",
|
||||||
|
"id": "i-0d86c676daa4ad5c7",
|
||||||
|
"instance_initiated_shutdown_behavior": "stop",
|
||||||
|
"instance_lifecycle": "",
|
||||||
|
"instance_market_options": [],
|
||||||
|
"instance_state": "running",
|
||||||
|
"instance_type": "t2.micro",
|
||||||
|
"ipv6_address_count": 0,
|
||||||
|
"ipv6_addresses": [],
|
||||||
|
"key_name": "theocorp",
|
||||||
|
"launch_template": [],
|
||||||
|
"maintenance_options": [
|
||||||
|
{
|
||||||
|
"auto_recovery": "default"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"metadata_options": [
|
||||||
|
{
|
||||||
|
"http_endpoint": "enabled",
|
||||||
|
"http_protocol_ipv6": "disabled",
|
||||||
|
"http_put_response_hop_limit": 1,
|
||||||
|
"http_tokens": "optional",
|
||||||
|
"instance_metadata_tags": "disabled"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"monitoring": false,
|
||||||
|
"network_interface": [],
|
||||||
|
"outpost_arn": "",
|
||||||
|
"password_data": "",
|
||||||
|
"placement_group": "",
|
||||||
|
"placement_partition_number": 0,
|
||||||
|
"primary_network_interface_id": "eni-0b11f199514741ce9",
|
||||||
|
"private_dns": "ip-172-31-81-102.ec2.internal",
|
||||||
|
"private_dns_name_options": [
|
||||||
|
{
|
||||||
|
"enable_resource_name_dns_a_record": false,
|
||||||
|
"enable_resource_name_dns_aaaa_record": false,
|
||||||
|
"hostname_type": "ip-name"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"private_ip": "172.31.81.102",
|
||||||
|
"public_dns": "ec2-18-211-242-110.compute-1.amazonaws.com",
|
||||||
|
"public_ip": "18.211.242.110",
|
||||||
|
"root_block_device": [
|
||||||
|
{
|
||||||
|
"delete_on_termination": true,
|
||||||
|
"device_name": "/dev/xvda",
|
||||||
|
"encrypted": false,
|
||||||
|
"iops": 100,
|
||||||
|
"kms_key_id": "",
|
||||||
|
"tags": {},
|
||||||
|
"tags_all": {},
|
||||||
|
"throughput": 0,
|
||||||
|
"volume_id": "vol-08238e1cc82c3d352",
|
||||||
|
"volume_size": 8,
|
||||||
|
"volume_type": "gp2"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"secondary_private_ips": [],
|
||||||
|
"security_groups": [
|
||||||
|
"aviary-sg"
|
||||||
|
],
|
||||||
|
"source_dest_check": true,
|
||||||
|
"spot_instance_request_id": "",
|
||||||
|
"subnet_id": "subnet-02a8be59a072d7d45",
|
||||||
|
"tags": {
|
||||||
|
"Name": "netbird"
|
||||||
|
},
|
||||||
|
"tags_all": {
|
||||||
|
"Name": "netbird"
|
||||||
},
|
},
|
||||||
"tenancy": "default",
|
"tenancy": "default",
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
@ -218,6 +402,58 @@
|
|||||||
],
|
],
|
||||||
"id": "sg-0b751004f80b5fe74",
|
"id": "sg-0b751004f80b5fe74",
|
||||||
"ingress": [
|
"ingress": [
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 10000,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "tcp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 10000
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 33073,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "tcp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 33073
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 33080,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "tcp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 33080
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 3478,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "udp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 3478
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"cidr_blocks": [
|
"cidr_blocks": [
|
||||||
"0.0.0.0/0"
|
"0.0.0.0/0"
|
||||||
@ -231,6 +467,19 @@
|
|||||||
"self": false,
|
"self": false,
|
||||||
"to_port": 443
|
"to_port": 443
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 49152,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "udp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 65535
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"cidr_blocks": [
|
"cidr_blocks": [
|
||||||
"0.0.0.0/0"
|
"0.0.0.0/0"
|
||||||
|
|||||||
@ -1,10 +1,379 @@
|
|||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.10.5",
|
"terraform_version": "1.10.5",
|
||||||
"serial": 32,
|
"serial": 47,
|
||||||
"lineage": "1548454c-cf7f-9153-d2ca-6d37af1f5a24",
|
"lineage": "1548454c-cf7f-9153-d2ca-6d37af1f5a24",
|
||||||
"outputs": {},
|
"outputs": {
|
||||||
|
"instance_public_ip": {
|
||||||
|
"value": "44.210.184.15",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"instance_public_ip_netbird": {
|
||||||
|
"value": "18.211.242.110",
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
"resources": [
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "aws_eip",
|
||||||
|
"name": "ec2_eip",
|
||||||
|
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"address": null,
|
||||||
|
"allocation_id": "eipalloc-0f33067513f18436b",
|
||||||
|
"arn": "arn:aws:ec2:us-east-1:874570603861:elastic-ip/eipalloc-0f33067513f18436b",
|
||||||
|
"associate_with_private_ip": null,
|
||||||
|
"association_id": "eipassoc-09b2937ea57df42e0",
|
||||||
|
"carrier_ip": "",
|
||||||
|
"customer_owned_ip": "",
|
||||||
|
"customer_owned_ipv4_pool": "",
|
||||||
|
"domain": "vpc",
|
||||||
|
"id": "eipalloc-0f33067513f18436b",
|
||||||
|
"instance": "i-0434f1dba567a3cd7",
|
||||||
|
"ipam_pool_id": null,
|
||||||
|
"network_border_group": "us-east-1",
|
||||||
|
"network_interface": "eni-0ac9da47e8ed218a9",
|
||||||
|
"private_dns": "ip-172-31-83-214.ec2.internal",
|
||||||
|
"private_ip": "172.31.83.214",
|
||||||
|
"ptr_record": "",
|
||||||
|
"public_dns": "ec2-44-210-184-15.compute-1.amazonaws.com",
|
||||||
|
"public_ip": "44.210.184.15",
|
||||||
|
"public_ipv4_pool": "amazon",
|
||||||
|
"tags": {},
|
||||||
|
"tags_all": {},
|
||||||
|
"timeouts": null,
|
||||||
|
"vpc": true
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjoxODAwMDAwMDAwMDAsInJlYWQiOjkwMDAwMDAwMDAwMCwidXBkYXRlIjozMDAwMDAwMDAwMDB9fQ==",
|
||||||
|
"dependencies": [
|
||||||
|
"aws_instance.ec2_vm",
|
||||||
|
"aws_security_group.ec2_sg"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "aws_eip",
|
||||||
|
"name": "ec2_eip_netbird",
|
||||||
|
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"address": null,
|
||||||
|
"allocation_id": "eipalloc-0c63042a76eff7889",
|
||||||
|
"arn": "arn:aws:ec2:us-east-1:874570603861:elastic-ip/eipalloc-0c63042a76eff7889",
|
||||||
|
"associate_with_private_ip": null,
|
||||||
|
"association_id": "eipassoc-0e3c1e5a6282ecefe",
|
||||||
|
"carrier_ip": "",
|
||||||
|
"customer_owned_ip": "",
|
||||||
|
"customer_owned_ipv4_pool": "",
|
||||||
|
"domain": "vpc",
|
||||||
|
"id": "eipalloc-0c63042a76eff7889",
|
||||||
|
"instance": "i-0d86c676daa4ad5c7",
|
||||||
|
"ipam_pool_id": null,
|
||||||
|
"network_border_group": "us-east-1",
|
||||||
|
"network_interface": "eni-0b11f199514741ce9",
|
||||||
|
"private_dns": "ip-172-31-81-102.ec2.internal",
|
||||||
|
"private_ip": "172.31.81.102",
|
||||||
|
"ptr_record": "",
|
||||||
|
"public_dns": "ec2-18-211-242-110.compute-1.amazonaws.com",
|
||||||
|
"public_ip": "18.211.242.110",
|
||||||
|
"public_ipv4_pool": "amazon",
|
||||||
|
"tags": {},
|
||||||
|
"tags_all": {},
|
||||||
|
"timeouts": null,
|
||||||
|
"vpc": true
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjoxODAwMDAwMDAwMDAsInJlYWQiOjkwMDAwMDAwMDAwMCwidXBkYXRlIjozMDAwMDAwMDAwMDB9fQ==",
|
||||||
|
"dependencies": [
|
||||||
|
"aws_instance.ec2_vm_netbird",
|
||||||
|
"aws_security_group.ec2_sg"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "aws_instance",
|
||||||
|
"name": "ec2_vm",
|
||||||
|
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 1,
|
||||||
|
"attributes": {
|
||||||
|
"ami": "ami-02a53b0d62d37a757",
|
||||||
|
"arn": "arn:aws:ec2:us-east-1:874570603861:instance/i-0434f1dba567a3cd7",
|
||||||
|
"associate_public_ip_address": true,
|
||||||
|
"availability_zone": "us-east-1a",
|
||||||
|
"capacity_reservation_specification": [
|
||||||
|
{
|
||||||
|
"capacity_reservation_preference": "open",
|
||||||
|
"capacity_reservation_target": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cpu_core_count": 1,
|
||||||
|
"cpu_options": [
|
||||||
|
{
|
||||||
|
"amd_sev_snp": "",
|
||||||
|
"core_count": 1,
|
||||||
|
"threads_per_core": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cpu_threads_per_core": 1,
|
||||||
|
"credit_specification": [
|
||||||
|
{
|
||||||
|
"cpu_credits": "standard"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"disable_api_stop": false,
|
||||||
|
"disable_api_termination": false,
|
||||||
|
"ebs_block_device": [],
|
||||||
|
"ebs_optimized": false,
|
||||||
|
"enable_primary_ipv6": null,
|
||||||
|
"enclave_options": [
|
||||||
|
{
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ephemeral_block_device": [],
|
||||||
|
"get_password_data": false,
|
||||||
|
"hibernation": false,
|
||||||
|
"host_id": "",
|
||||||
|
"host_resource_group_arn": null,
|
||||||
|
"iam_instance_profile": "",
|
||||||
|
"id": "i-0434f1dba567a3cd7",
|
||||||
|
"instance_initiated_shutdown_behavior": "stop",
|
||||||
|
"instance_lifecycle": "",
|
||||||
|
"instance_market_options": [],
|
||||||
|
"instance_state": "running",
|
||||||
|
"instance_type": "t2.micro",
|
||||||
|
"ipv6_address_count": 0,
|
||||||
|
"ipv6_addresses": [],
|
||||||
|
"key_name": "theocorp",
|
||||||
|
"launch_template": [],
|
||||||
|
"maintenance_options": [
|
||||||
|
{
|
||||||
|
"auto_recovery": "default"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"metadata_options": [
|
||||||
|
{
|
||||||
|
"http_endpoint": "enabled",
|
||||||
|
"http_protocol_ipv6": "disabled",
|
||||||
|
"http_put_response_hop_limit": 1,
|
||||||
|
"http_tokens": "optional",
|
||||||
|
"instance_metadata_tags": "disabled"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"monitoring": false,
|
||||||
|
"network_interface": [],
|
||||||
|
"outpost_arn": "",
|
||||||
|
"password_data": "",
|
||||||
|
"placement_group": "",
|
||||||
|
"placement_partition_number": 0,
|
||||||
|
"primary_network_interface_id": "eni-0ac9da47e8ed218a9",
|
||||||
|
"private_dns": "ip-172-31-83-214.ec2.internal",
|
||||||
|
"private_dns_name_options": [
|
||||||
|
{
|
||||||
|
"enable_resource_name_dns_a_record": false,
|
||||||
|
"enable_resource_name_dns_aaaa_record": false,
|
||||||
|
"hostname_type": "ip-name"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"private_ip": "172.31.83.214",
|
||||||
|
"public_dns": "ec2-44-210-184-15.compute-1.amazonaws.com",
|
||||||
|
"public_ip": "44.210.184.15",
|
||||||
|
"root_block_device": [
|
||||||
|
{
|
||||||
|
"delete_on_termination": true,
|
||||||
|
"device_name": "/dev/xvda",
|
||||||
|
"encrypted": false,
|
||||||
|
"iops": 100,
|
||||||
|
"kms_key_id": "",
|
||||||
|
"tags": {},
|
||||||
|
"tags_all": {},
|
||||||
|
"throughput": 0,
|
||||||
|
"volume_id": "vol-0d3cf7178ed164cb7",
|
||||||
|
"volume_size": 8,
|
||||||
|
"volume_type": "gp2"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"secondary_private_ips": [],
|
||||||
|
"security_groups": [
|
||||||
|
"aviary-sg"
|
||||||
|
],
|
||||||
|
"source_dest_check": true,
|
||||||
|
"spot_instance_request_id": "",
|
||||||
|
"subnet_id": "subnet-02a8be59a072d7d45",
|
||||||
|
"tags": {
|
||||||
|
"Name": "pangolin"
|
||||||
|
},
|
||||||
|
"tags_all": {
|
||||||
|
"Name": "pangolin"
|
||||||
|
},
|
||||||
|
"tenancy": "default",
|
||||||
|
"timeouts": null,
|
||||||
|
"user_data": null,
|
||||||
|
"user_data_base64": null,
|
||||||
|
"user_data_replace_on_change": false,
|
||||||
|
"volume_tags": null,
|
||||||
|
"vpc_security_group_ids": [
|
||||||
|
"sg-0b751004f80b5fe74"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6MTIwMDAwMDAwMDAwMCwicmVhZCI6OTAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH0sInNjaGVtYV92ZXJzaW9uIjoiMSJ9",
|
||||||
|
"dependencies": [
|
||||||
|
"aws_security_group.ec2_sg"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "aws_instance",
|
||||||
|
"name": "ec2_vm_netbird",
|
||||||
|
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 1,
|
||||||
|
"attributes": {
|
||||||
|
"ami": "ami-02a53b0d62d37a757",
|
||||||
|
"arn": "arn:aws:ec2:us-east-1:874570603861:instance/i-0d86c676daa4ad5c7",
|
||||||
|
"associate_public_ip_address": true,
|
||||||
|
"availability_zone": "us-east-1a",
|
||||||
|
"capacity_reservation_specification": [
|
||||||
|
{
|
||||||
|
"capacity_reservation_preference": "open",
|
||||||
|
"capacity_reservation_target": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cpu_core_count": 1,
|
||||||
|
"cpu_options": [
|
||||||
|
{
|
||||||
|
"amd_sev_snp": "",
|
||||||
|
"core_count": 1,
|
||||||
|
"threads_per_core": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cpu_threads_per_core": 1,
|
||||||
|
"credit_specification": [
|
||||||
|
{
|
||||||
|
"cpu_credits": "standard"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"disable_api_stop": false,
|
||||||
|
"disable_api_termination": false,
|
||||||
|
"ebs_block_device": [],
|
||||||
|
"ebs_optimized": false,
|
||||||
|
"enable_primary_ipv6": null,
|
||||||
|
"enclave_options": [
|
||||||
|
{
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ephemeral_block_device": [],
|
||||||
|
"get_password_data": false,
|
||||||
|
"hibernation": false,
|
||||||
|
"host_id": "",
|
||||||
|
"host_resource_group_arn": null,
|
||||||
|
"iam_instance_profile": "",
|
||||||
|
"id": "i-0d86c676daa4ad5c7",
|
||||||
|
"instance_initiated_shutdown_behavior": "stop",
|
||||||
|
"instance_lifecycle": "",
|
||||||
|
"instance_market_options": [],
|
||||||
|
"instance_state": "running",
|
||||||
|
"instance_type": "t2.micro",
|
||||||
|
"ipv6_address_count": 0,
|
||||||
|
"ipv6_addresses": [],
|
||||||
|
"key_name": "theocorp",
|
||||||
|
"launch_template": [],
|
||||||
|
"maintenance_options": [
|
||||||
|
{
|
||||||
|
"auto_recovery": "default"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"metadata_options": [
|
||||||
|
{
|
||||||
|
"http_endpoint": "enabled",
|
||||||
|
"http_protocol_ipv6": "disabled",
|
||||||
|
"http_put_response_hop_limit": 1,
|
||||||
|
"http_tokens": "optional",
|
||||||
|
"instance_metadata_tags": "disabled"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"monitoring": false,
|
||||||
|
"network_interface": [],
|
||||||
|
"outpost_arn": "",
|
||||||
|
"password_data": "",
|
||||||
|
"placement_group": "",
|
||||||
|
"placement_partition_number": 0,
|
||||||
|
"primary_network_interface_id": "eni-0b11f199514741ce9",
|
||||||
|
"private_dns": "ip-172-31-81-102.ec2.internal",
|
||||||
|
"private_dns_name_options": [
|
||||||
|
{
|
||||||
|
"enable_resource_name_dns_a_record": false,
|
||||||
|
"enable_resource_name_dns_aaaa_record": false,
|
||||||
|
"hostname_type": "ip-name"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"private_ip": "172.31.81.102",
|
||||||
|
"public_dns": "ec2-18-211-242-110.compute-1.amazonaws.com",
|
||||||
|
"public_ip": "18.211.242.110",
|
||||||
|
"root_block_device": [
|
||||||
|
{
|
||||||
|
"delete_on_termination": true,
|
||||||
|
"device_name": "/dev/xvda",
|
||||||
|
"encrypted": false,
|
||||||
|
"iops": 100,
|
||||||
|
"kms_key_id": "",
|
||||||
|
"tags": {},
|
||||||
|
"tags_all": {},
|
||||||
|
"throughput": 0,
|
||||||
|
"volume_id": "vol-08238e1cc82c3d352",
|
||||||
|
"volume_size": 8,
|
||||||
|
"volume_type": "gp2"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"secondary_private_ips": [],
|
||||||
|
"security_groups": [
|
||||||
|
"aviary-sg"
|
||||||
|
],
|
||||||
|
"source_dest_check": true,
|
||||||
|
"spot_instance_request_id": "",
|
||||||
|
"subnet_id": "subnet-02a8be59a072d7d45",
|
||||||
|
"tags": {
|
||||||
|
"Name": "netbird"
|
||||||
|
},
|
||||||
|
"tags_all": {
|
||||||
|
"Name": "netbird"
|
||||||
|
},
|
||||||
|
"tenancy": "default",
|
||||||
|
"timeouts": null,
|
||||||
|
"user_data": null,
|
||||||
|
"user_data_base64": null,
|
||||||
|
"user_data_replace_on_change": false,
|
||||||
|
"volume_tags": null,
|
||||||
|
"vpc_security_group_ids": [
|
||||||
|
"sg-0b751004f80b5fe74"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6MTIwMDAwMDAwMDAwMCwicmVhZCI6OTAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH0sInNjaGVtYV92ZXJzaW9uIjoiMSJ9",
|
||||||
|
"dependencies": [
|
||||||
|
"aws_security_group.ec2_sg"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"mode": "managed",
|
"mode": "managed",
|
||||||
"type": "aws_security_group",
|
"type": "aws_security_group",
|
||||||
@ -38,6 +407,71 @@
|
|||||||
"0.0.0.0/0"
|
"0.0.0.0/0"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": "",
|
||||||
|
"from_port": 10000,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "tcp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 10000
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 33073,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "tcp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 33073
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 33080,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "tcp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 33080
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 3478,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "udp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 3478
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"from_port": 49152,
|
||||||
|
"ipv6_cidr_blocks": [],
|
||||||
|
"prefix_list_ids": [],
|
||||||
|
"protocol": "udp",
|
||||||
|
"security_groups": [],
|
||||||
|
"self": false,
|
||||||
|
"to_port": 65535
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cidr_blocks": [
|
||||||
|
"0.0.0.0/0"
|
||||||
|
],
|
||||||
|
"description": null,
|
||||||
"from_port": 443,
|
"from_port": 443,
|
||||||
"ipv6_cidr_blocks": [],
|
"ipv6_cidr_blocks": [],
|
||||||
"prefix_list_ids": [],
|
"prefix_list_ids": [],
|
||||||
@ -50,7 +484,7 @@
|
|||||||
"cidr_blocks": [
|
"cidr_blocks": [
|
||||||
"0.0.0.0/0"
|
"0.0.0.0/0"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": null,
|
||||||
"from_port": 51820,
|
"from_port": 51820,
|
||||||
"ipv6_cidr_blocks": [],
|
"ipv6_cidr_blocks": [],
|
||||||
"prefix_list_ids": [],
|
"prefix_list_ids": [],
|
||||||
@ -63,7 +497,7 @@
|
|||||||
"cidr_blocks": [
|
"cidr_blocks": [
|
||||||
"0.0.0.0/0"
|
"0.0.0.0/0"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": null,
|
||||||
"from_port": 80,
|
"from_port": 80,
|
||||||
"ipv6_cidr_blocks": [],
|
"ipv6_cidr_blocks": [],
|
||||||
"prefix_list_ids": [],
|
"prefix_list_ids": [],
|
||||||
@ -76,7 +510,7 @@
|
|||||||
"cidr_blocks": [
|
"cidr_blocks": [
|
||||||
"108.237.185.23/32"
|
"108.237.185.23/32"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": null,
|
||||||
"from_port": 22,
|
"from_port": 22,
|
||||||
"ipv6_cidr_blocks": [],
|
"ipv6_cidr_blocks": [],
|
||||||
"prefix_list_ids": [],
|
"prefix_list_ids": [],
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user