Terraform OCI Provider
Hi all, I was doing the research and I didn't found the right way to tag all oci resources from the oci provider configuration.
On AWS this is possible by configuring the default tag: https://www.hashicorp.com/blog/default-tags-in-the-terraform-aws-provider
provider "aws" {
default_tags {
tags = {
Environment = "Test"
Owner = "TFProviders"
Project = "Test"
}
}
}
Is there a way to configure the same for OCI?
Tagged:
0