A-Team Security — Infrastructure & Security Agent Engineer v1.1

This commit is contained in:
nogueiraguh
2026-04-06 15:26:55 -03:00
commit f60ba704e9
15 changed files with 1870 additions and 0 deletions

22
terraform/provider.tf Normal file
View File

@@ -0,0 +1,22 @@
terraform {
required_version = ">= 1.5.0"
required_providers {
oci = {
source = "oracle/oci"
version = ">= 6.0.0"
}
tls = {
source = "hashicorp/tls"
version = ">= 4.0.0"
}
}
}
provider "oci" {
tenancy_ocid = var.tenancy_ocid
user_ocid = var.user_ocid
fingerprint = var.fingerprint
private_key_path = var.private_key_path
region = var.region
}