Add script_mauroterraform_20260805_084818.tf
This commit is contained in:
parent
dfd79530ef
commit
48a7d464c6
31
script_mauroterraform_20260805_084818.tf
Normal file
31
script_mauroterraform_20260805_084818.tf
Normal file
@ -0,0 +1,31 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
ovh = {
|
||||
source = "ovh/ovh"
|
||||
version = ">= 0.24.0"
|
||||
}
|
||||
null = {
|
||||
source = "hashicorp/null"
|
||||
version = ">= 3.2.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "ovh" {
|
||||
endpoint = "ovh-eu"
|
||||
}
|
||||
|
||||
# Dummy resource for parser testing
|
||||
resource "null_resource" "example" {
|
||||
triggers = {
|
||||
user_data = <<-EOF
|
||||
#!/bin/bash
|
||||
echo "Instance initialized"
|
||||
echo "Hello from Terraform"
|
||||
EOF
|
||||
}
|
||||
|
||||
provisioner "local-exec" {
|
||||
command = "echo 'Terraform script executed'"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user