Is it possible to export shell environment variables using terraform

656 Views Asked by At

My use case is that, for example, my main.tf is creating 4 resources

resource "a" {}
resource "b" {}
resource "c" {}
resource "d" {}

So the resource "d" needs a shell environment to be present. So is there a way that I can export a shell environment variable ( export username = test ) in resource "c"?

1

There are 1 best solutions below

1
On

with terraform you can use module

local-exec

and then dive in to your bash skills from there. Including catching terminal env's