Add behavior :

- Personal SSH Key 🔐
- Deploy repository from variables ⚙️
- Import custom network images 🛜
This commit is contained in:
Damien A
2023-11-10 10:59:04 +01:00
parent 78322ee157
commit 609e616d7c
7 changed files with 84 additions and 18 deletions

4
.gitignore vendored
View File

@@ -38,4 +38,6 @@ terraform.rc
# Data file # Data file
inventory inventory
tf-key-pair.pem network_images/*
.DS_Store
.vscode/settings.json

View File

@@ -12,6 +12,8 @@ This project automates the deployment of ContainerLab tools on an AWS EC2 instan
- AWS Account - AWS Account
- Terraform installed - Terraform installed
- Ansible installed - Ansible installed
- SSH key configured
- Route 53 domaine configured
## Usage ## Usage

View File

@@ -1,6 +1,8 @@
--- ---
- hosts: all - hosts: all
become: yes become: yes
vars:
repo_git_url: ""
tasks: tasks:
- name: Install required system packages - name: Install required system packages
@@ -14,6 +16,8 @@
- virtualenv - virtualenv
- python3-setuptools - python3-setuptools
- git - git
- tree
- htop
state: latest state: latest
update_cache: true update_cache: true
@@ -43,3 +47,44 @@
curl -sL https://get.containerlab.dev | sudo bash curl -sL https://get.containerlab.dev | sudo bash
args: args:
creates: /usr/local/bin/containerlab creates: /usr/local/bin/containerlab
- name: Ensure /opt/containerlab directory exists
file:
path: /opt/containerlab
state: directory
mode: '0755'
owner: admin
group: admin
become: yes
- name: Ensure user 'admin' exists
user:
name: admin
append: yes
groups: docker
shell: /bin/bash
become: yes
- name: Clone specified GitHub repository to /opt/containerlab
git:
repo: "{{ repo_git_url }}"
dest: "/opt/containerlab/projet/"
clone: yes
update: yes
version: "main"
become: yes
when: repo_git_url | length > 0
- name: Copy network images to remote /tmp directory
copy:
src: "{{ item }}"
dest: "/tmp/{{ item | basename }}"
with_fileglob:
- "../network_images/*"
when: inventory_hostname in groups['all']
- name: Import network image to Docker with specific tag
command:
cmd: "docker import /tmp/{{ item | basename }} {{ (item | basename | regex_replace('^(\\D+)-.*-(.*)\\.tar\\.xz', '\\1')) | lower }}:{{ item | basename | regex_replace('^(\\D+)-.*-(.*)\\.tar\\.xz', '\\2') }}"
loop: "{{ query('fileglob', '../network_images/*.tar.xz') }}"
when: inventory_hostname in groups['all']

View File

@@ -4,20 +4,6 @@ provider "aws" {
secret_key = var.AWS_SECRET_KEY secret_key = var.AWS_SECRET_KEY
} }
resource "aws_key_pair" "tf-key-pair" {
key_name = "tf-key-pair"
public_key = tls_private_key.rsa.public_key_openssh
}
resource "tls_private_key" "rsa" {
algorithm = "RSA"
rsa_bits = 4096
}
resource "local_file" "tf-key" {
content = tls_private_key.rsa.private_key_pem
filename = "tf-key-pair.pem"
file_permission = "0600"
}
resource "aws_security_group" "netlab_sg" { resource "aws_security_group" "netlab_sg" {
name = "netlab_sg" name = "netlab_sg"
@@ -45,14 +31,21 @@ resource "aws_security_group" "netlab_sg" {
resource "aws_instance" "containerlab_host" { resource "aws_instance" "containerlab_host" {
ami = var.AWS_AMIS[var.AWS_REGION] ami = var.AWS_AMIS[var.AWS_REGION]
instance_type = "t2.xlarge" instance_type = "t2.xlarge"
key_name = "tf-key-pair" key_name = var.AWS_KEY_NAME
vpc_security_group_ids = [aws_security_group.netlab_sg.id] vpc_security_group_ids = [aws_security_group.netlab_sg.id]
root_block_device {
volume_size = "128"
volume_type = "gp2"
encrypted = "false"
delete_on_termination = "true"
}
provisioner "local-exec" { provisioner "local-exec" {
command = "echo ${aws_instance.containerlab_host.public_ip} > ../ansible/inventory" command = "echo ${aws_instance.containerlab_host.public_ip} > ../ansible/inventory"
} }
provisioner "local-exec" { provisioner "local-exec" {
command = "sleep 20; ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -u admin -i ../ansible/inventory --private-key ./tf-key-pair.pem ../ansible/install_containerlab.yml" command = "sleep 20; ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -u admin -i ../ansible/inventory --private-key ${var.AWS_KEY_LOCATION} ../ansible/install_containerlab.yml --extra-vars repo_git_url=${var.GITHUB_REPO_URL}"
} }
} }

View File

@@ -1,3 +1,7 @@
output "public_ip" { output "public_ip" {
value = aws_instance.containerlab_host.public_ip value = aws_instance.containerlab_host.public_ip
} }
output "containerlab_fqdn" {
value = "${aws_route53_record.containerlab_fqdn.name}.${data.aws_route53_zone.selected.name}"
}

View File

@@ -0,0 +1,12 @@
data "aws_route53_zone" "selected" {
zone_id = var.AWS_R53_ZONE_ID
}
resource "aws_route53_record" "containerlab_fqdn" {
zone_id = var.AWS_R53_ZONE_ID
name = "containerlab"
type = "A"
ttl = "300"
records = [aws_instance.containerlab_host.public_ip]
}

View File

@@ -1,5 +1,13 @@
variable "AWS_ACCESS_KEY" {} variable "AWS_ACCESS_KEY" {}
variable "AWS_SECRET_KEY" {} variable "AWS_SECRET_KEY" {}
variable "AWS_KEY_NAME" {}
variable "AWS_KEY_LOCATION" {}
variable "AWS_R53_ZONE_ID" {}
variable "GITHUB_REPO_URL" {
type = string
default = ""
}
variable "AWS_REGION" { variable "AWS_REGION" {
type = string type = string