From 94301d589a4957c51d465c908d9ace273d9d1f43 Mon Sep 17 00:00:00 2001 From: eneller Date: Wed, 6 May 2026 01:27:25 +0200 Subject: [PATCH] Initial Commit --- .gitignore | 60 +++++++++++++++++++++++++++++++++++++++++++++ .terraform.lock.hcl | 24 ++++++++++++++++++ main.tf | 1 + 3 files changed, 85 insertions(+) create mode 100644 .gitignore create mode 100644 .terraform.lock.hcl create mode 100644 main.tf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2cfd271 --- /dev/null +++ b/.gitignore @@ -0,0 +1,60 @@ +# Created by https://www.toptal.com/developers/gitignore/api/terraform,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=terraform,visualstudiocode + +### Terraform ### +# Local .terraform directories +**/.terraform/* + +# .tfstate files +*.tfstate +*.tfstate.* + +# Crash log files +crash.log +crash.*.log + +# Exclude all .tfvars files, which are likely to contain sensitive data, such as +# password, private keys, and other secrets. These should not be part of version +# control as they are data points which are potentially sensitive and subject +# to change depending on the environment. +*.tfvars +*.tfvars.json + +# Ignore override files as they are usually used to override resources locally and so +# are not checked in +override.tf +override.tf.json +*_override.tf +*_override.tf.json + +# Include override files you do wish to add to version control using negated pattern +# !example_override.tf + +# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan +# example: *tfplan* + +# Ignore CLI configuration files +.terraformrc +terraform.rc + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# End of https://www.toptal.com/developers/gitignore/api/terraform,visualstudiocode + diff --git a/.terraform.lock.hcl b/.terraform.lock.hcl new file mode 100644 index 0000000..0d43632 --- /dev/null +++ b/.terraform.lock.hcl @@ -0,0 +1,24 @@ +# This file is maintained automatically by "tofu init". +# Manual edits may be lost in future updates. + +provider "registry.opentofu.org/hashicorp/oci" { + version = "8.12.0" + hashes = [ + "h1:nucBGjB9DpSfZSc3kbT8l3DwwHD5cFpjt/VKDA3hRDA=", + "zh:063c2ca3ee8fc641b8d60533d13d5723a5ee204063dc1d4140d63768b3010eae", + "zh:06eff9e08457bd7021aca7448e52738b89c29bbe781b8e6bfc6336154f632cce", + "zh:1c7ead0521a82d5cf17d1aece7b5cea7b56821f2de0019906730c33737237866", + "zh:49bb87c54ffbbbb320e27aa55e9859ef57c6fb0a8930e3e589461a0f749431b5", + "zh:4fdaa1a19b0e8faea07074ef95d2885a5931b7f0b2c80ee55c4f127c7184ff4b", + "zh:51878b9b3665e21ec83f78ec3706911049256096eb3db6b53b1ca2d348850668", + "zh:6320c7f076e1f948874dadc35f2596ddc15f4ccbb0c5483e5cbbebb66cd82a18", + "zh:9612423d29b34a5c4ca168e09ddcf9473ab6551c05f947a8627b5ad9e28710cf", + "zh:9b12af85486a96aedd8d7984b0ff811a4b42e3d88dad1a3fb4c0b580d04fa425", + "zh:b93cef30a30d5bba736fb41b8e5af7046ac3a0d7f827ba84818e6ddb0f519480", + "zh:ba3b32c67f9d9f18895fd65e185f103fdff93aa1c231887221a23f2d4a7fbdd9", + "zh:bb7ee94a16b80c1e76c6e5566d441a627aadd5699d2885af8bcb12b7408007c5", + "zh:c4b471a80dc63f2a3d5b6e793473fd72823480c8c5a9f2af7b88a04b0677c2ef", + "zh:d5e312c431b0c58e3225e526bdeda94f4524a1dd708546d81053e103882a485f", + "zh:debad070a61262adb3adc3a7fa17191419a6490951457201998bec7451c8c891", + ] +} diff --git a/main.tf b/main.tf new file mode 100644 index 0000000..517a686 --- /dev/null +++ b/main.tf @@ -0,0 +1 @@ +provider "oci" {}