Terraform configurations are in HashiCorp Configuration Language (HCL) and can also be JSON formatted. The configuration files normally end with .tf and they can be used to configure various things.
In the current sample, we will initialize the two cloud providers for us (AWS and OpenStack) and create a simple IaaC code, which will create resources in both the clouds.
We will create two files for the providers prov-os.tf and prov-aws.tf. The filenames can be anything as long as they end with the .tf extension. ...