We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da156be commit af20ab6Copy full SHA for af20ab6
.gitignore
@@ -0,0 +1,3 @@
1
+*.tfstate
2
+*.tfstate.backup
3
+*.terraform
README.md
@@ -1 +1,17 @@
-# This is a placeholder till I really sort things out.
+# Terraform Repo
+
+## Purpose
4
5
+- The purpose of this is to create a source for corporate re-use
6
7
+-----------------------------------------
8
9
+## Quick start
10
11
+To get started perform the following steps
12
13
+1. Create a project directory
14
15
+2. Copy the base template to the project directory and rename to main.tf
16
17
+3.
modules/compute/main.tf
@@ -0,0 +1,9 @@
+provider "azurerm" {
+ version = "~>2.0"
+ features {}
+ resource "azurerm_resource_group" "rg" {
+ name = ""
+ location = "eastus"
+ }
+}
0 commit comments