From cab08528916548c133765a82fa2fea1718ccea43 Mon Sep 17 00:00:00 2001 From: BackInBash <48181660+BackInBash@users.noreply.github.com> Date: Mon, 29 Jan 2024 12:14:32 +0100 Subject: [PATCH] added src header --- 00-provider.tf | 10 +++++++++- 01-config.tf | 8 ++++++++ 02-pfsense-image.tf | 8 ++++++++ 03-pfsense-network.tf | 8 ++++++++ 04-pfsense-appliance.tf | 8 ++++++++ 5 files changed, 41 insertions(+), 1 deletion(-) diff --git a/00-provider.tf b/00-provider.tf index 383dc76..c2cb32f 100644 --- a/00-provider.tf +++ b/00-provider.tf @@ -1,10 +1,18 @@ +/* +Copyright 2023-2024 Schwarz IT KG + +Use of this source code is governed by an MIT-style +license that can be found in the LICENSE file or at +https://opensource.org/licenses/MIT. +*/ + # Define required providers terraform { required_version = ">= 0.14.0" required_providers { openstack = { source = "terraform-provider-openstack/openstack" - version = "1.52.1" + version = "1.53.0" } } } diff --git a/01-config.tf b/01-config.tf index 24808a3..0f93768 100644 --- a/01-config.tf +++ b/01-config.tf @@ -1,3 +1,11 @@ +/* +Copyright 2023-2024 Schwarz IT KG + +Use of this source code is governed by an MIT-style +license that can be found in the LICENSE file or at +https://opensource.org/licenses/MIT. +*/ + # # Custom User Settings # diff --git a/02-pfsense-image.tf b/02-pfsense-image.tf index c375707..f4eed0b 100644 --- a/02-pfsense-image.tf +++ b/02-pfsense-image.tf @@ -1,3 +1,11 @@ +/* +Copyright 2023-2024 Schwarz IT KG + +Use of this source code is governed by an MIT-style +license that can be found in the LICENSE file or at +https://opensource.org/licenses/MIT. +*/ + # Upload VPN Appliance Image to OpenStack resource "openstack_images_image_v2" "pfsense_image" { name = "pfsense-2.7.2-amd64-image" diff --git a/03-pfsense-network.tf b/03-pfsense-network.tf index d8f8228..ec0777c 100644 --- a/03-pfsense-network.tf +++ b/03-pfsense-network.tf @@ -1,3 +1,11 @@ +/* +Copyright 2023-2024 Schwarz IT KG + +Use of this source code is governed by an MIT-style +license that can be found in the LICENSE file or at +https://opensource.org/licenses/MIT. +*/ + # Create vNET Networks resource "openstack_networking_network_v2" "vpc_network" { name = "VPC Network" diff --git a/04-pfsense-appliance.tf b/04-pfsense-appliance.tf index 71f2f90..ead8c5f 100644 --- a/04-pfsense-appliance.tf +++ b/04-pfsense-appliance.tf @@ -1,3 +1,11 @@ +/* +Copyright 2023-2024 Schwarz IT KG + +Use of this source code is governed by an MIT-style +license that can be found in the LICENSE file or at +https://opensource.org/licenses/MIT. +*/ + # Create root Volume resource "openstack_blockstorage_volume_v3" "fw_root_volume" { name = "pfsense-2.7.2-root"