Created
March 31, 2023 05:14
-
-
Save devops-school/31aa7cb77bb6a3be05b78dc5fe55c0d1 to your computer and use it in GitHub Desktop.
Terraform Tutorials: Named Values – Filesystem and workspace info
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| provider "aws" { | |
| region = "us-east-1" | |
| } | |
| locals { | |
| # Define the path to the directory containing your Terraform files | |
| base_dir = path.root | |
| } | |
| resource "aws_s3_bucket" "example_bucket" { | |
| bucket = "example-bucket-${local.base_dir}" | |
| acl = "private" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment