We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a9a476 commit be740ddCopy full SHA for be740dd
src/Compendium.Terraform/module/.gitignore
@@ -38,3 +38,5 @@ terraform.rc
38
# Ignore plan files
39
*.plan
40
*.tfplan
41
+tfplan
42
+tfplan.json
src/Compendium.Terraform/module/locals.tf
@@ -0,0 +1,3 @@
1
+locals {
2
+ name = split("@", var.contact)[0]
3
+}
src/Compendium.Terraform/module/main.tf
@@ -1,7 +1,3 @@
-locals {
- name = split("@", var.contact)[0]
-}
4
-
5
resource "terraform_data" "contact" {
6
input = var.contact
7
}
0 commit comments