Compare commits

...

3 Commits

Author SHA1 Message Date
James Tombleson 438066f8ff Updated gitignore 2019-05-02 14:43:26 -07:00
James Tombleson ca3f9b5b68 Updating the branch with master 2019-05-02 14:36:59 -07:00
James Tombleson 761c5daaf9 Added some terraform
going though terraform for azure
2019-04-22 20:11:14 -07:00
2 changed files with 30 additions and 0 deletions

10
.gitignore vendored
View File

@ -1,7 +1,17 @@
# Ansible retry files
*.retry
# vim swap files
*.swp
# OSX
.DS_Store
# Ansible host files
hosts
win_hosts
# Ignore Terraform state files.
.tfstate
.tfstate.backup
.terraform*

20
terraform/azure/main.tf Normal file
View File

@ -0,0 +1,20 @@
provider "azurerm" {
version = "=1.20.0"
}
resource "azurerm_resource_group" "rg" {
name = "myTFResourceGroup"
location = "eastus"
tags {
envirement = "TF Sandbox"
}
}
resource "azurerm_virtual_network" "vnet" {
name = "myTFnet"
address_space = ["10.0.0.0/16"]
location = "eastus"
resource_group_name = "${azurerm_resource_group.rn.name}"
}