Skip to content

Commit af20ab6

Browse files
committed
no this time really
1 parent da156be commit af20ab6

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.tfstate
2+
*.tfstate.backup
3+
*.terraform

README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
# This is a placeholder till I really sort things out.
1+
# Terraform Repo
2+
3+
## 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

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
provider "azurerm" {
2+
version = "~>2.0"
3+
features {}
4+
5+
resource "azurerm_resource_group" "rg" {
6+
name = ""
7+
location = "eastus"
8+
}
9+
}

0 commit comments

Comments
 (0)