Skip to content

Instantly share code, notes, and snippets.

@devops-school
Created March 31, 2023 05:16
Show Gist options
  • Select an option

  • Save devops-school/8ab16f07ff56e7ea29cc30e62e124521 to your computer and use it in GitHub Desktop.

Select an option

Save devops-school/8ab16f07ff56e7ea29cc30e62e124521 to your computer and use it in GitHub Desktop.
Terraform Tutorials: Named Values – Filesystem and workspace info
locals {
# Define the path to the current working directory
current_dir = path.cwd
}
resource "aws_s3_bucket" "example_bucket" {
bucket = "example-bucket-${local.current_dir}"
acl = "private"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment