diff --git a/.gitignore b/.gitignore index f3f0634..1bce381 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,29 @@ *.vsix # -*.exe \ No newline at end of file +*.exe + +# 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 +*.tfvars +*.tfvars.json + +# Ignore transient lock info files created by terraform apply +.terraform.tfstate.lock.info + +# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan +*tfplan* + +# Ignore CLI configuration files +.terraformrc +terraform.rc \ No newline at end of file diff --git a/.terraform.lock.hcl b/.terraform.lock.hcl new file mode 100644 index 0000000..8d64782 --- /dev/null +++ b/.terraform.lock.hcl @@ -0,0 +1,24 @@ +# This file is maintained automatically by "terraform init". +# Manual edits may be lost in future updates. + +provider "registry.terraform.io/scaleway/scaleway" { + version = "2.41.3" + constraints = "~> 2.41.0" + hashes = [ + "h1:fGoGKHp4t8lHBvA6NBv14a7BOh8WoLLKYT9xTNJsjG8=", + "zh:010f4b8e5a2a13961d16a7af7d9bc5ca779633ce1ef123c054406c4b68408f7c", + "zh:0a97bd9bb974d8bf8d5abe951a3f5026e53a300f41a95cc0e274de669b72d67d", + "zh:1b96e136e22936f044fbae57b78bc4edccfc87772bd494b308657121b7e4bad6", + "zh:212ff93bff1e08cde5574d007f4211b9c704084af81347dc4eb641035902a53d", + "zh:335acfa1490f6722a26063a3893e9925ab1320170c61c35e58d25ddc4da18429", + "zh:3e2ac50a976ac67e0a30da4de10bfedbca506a23f8317a75cb574986cc8061d6", + "zh:431e0cb2927dd4e3284d6df15507961a5ef51f1c2a39cdbab412051da8d0449c", + "zh:56dd327aa6ca5b9f33b02b824132b478b551a8e73837a6e5b78a48800e3354e2", + "zh:5b2d5d304e3e272a5d93dc4ce8b5813cbe2484950b2d7705fd04b43acfd2a125", + "zh:724de80f424dad9c618a143df1a9b318b9188a0ac32c1cafac10660065c071f8", + "zh:7bbaa4af9d202424a88e41f60415fd672c68582f400bc793d654f357b9724d48", + "zh:d43b1cc8a7fd22ceb437f713491c15eb0a4902c967bcaa1cdc5fa55f0d99a718", + "zh:e0dc9b61daf4e2040050313d866a54aecefcd33675c537b8ef341a476f184f33", + "zh:effd715aa89d76052ecce983f4bc9436b3b95d66664542c04874942698f67089", + ] +} diff --git a/outputs.tf b/outputs.tf index 45808c7..ba47b3f 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,4 +1,4 @@ output "cluster_kubeconfig" { - description = "the contents of generated KUBECONFIG file" + description = "le contenu du fichier KUBECONFIG généré" value = nonsensitive(scaleway_k8s_cluster.cluster.kubeconfig[0].config_file) } \ No newline at end of file