-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Addition of Azure Resource Manager provider terraform configuration #704
Open
heywoodj
wants to merge
58
commits into
Capgemini:master
Choose a base branch
from
heywoodj:azure_rmprovider
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
58 commits
Select commit
Hold shift + click to select a range
bf95e21
Add new azure resorce manager branch and privider terraform file
690b73f
Addition of terraform variables file
d2d5649
Rename folder to azurerm
51c370d
Addition of virtual network and storage account
3aedd81
Addition bastion server and master servers configuration
809a9c9
updates and addition of slave server configuration
1c53919
Merge branch 'master' into azure_rmprovider
6b79f6c
update slave references to agent
57e9c82
Updates to run remote execution scripts on server
cd19c54
update remote-exec to use certificate authentication, requires Terraf…
5274c5b
Add new azure resorce manager branch and privider terraform file
9298210
Addition of terraform variables file
63028d1
Rename folder to azurerm
f778e83
Addition of virtual network and storage account
88c2bd8
Addition bastion server and master servers configuration
974d0fa
updates and addition of slave server configuration
d8e04d6
update slave references to agent
15cda48
Updates to run remote execution scripts on server
be8a3d4
update remote-exec to use certificate authentication, requires Terraf…
72c737a
Merge branch 'azure_rmprovider' of https://github.com/heywoodj/Apollo…
0eac48b
Merge branch 'master' into azure_rmprovider
92f594a
Clean up formatting
522d7c7
Clean up formatting
c0f64c7
Clean up formatting
432f10b
Merge branch 'master' into azure_rmprovider
7f35c1e
Move into 'private-cloud' folder
a6c68cb
Update to configure VM's through bastion host
53dc1e1
Update servers to copy files from correct location.
5ae33fc
Fix format issue.
a8142a7
Fix format issue.
12effba
Inclusion of cloud config and seperation of subnets
d7412d9
Fix format issues
0af0c9d
Fix format issues
712d630
Update to create bastion security group
cf8eb3f
Fix formatting
0ebb252
Fix formatting
2f65fa9
Addition of public azure infrastructure
a0ca621
Fix formatting
24423d4
Addition of route tables and gateway
9b57654
Fix formatting
ba9c292
Create README.md
0c2dc51
Delete README.md
8587ef0
Create README.md
9eba56a
Update README.md
8161be6
Update README.md
b573442
Update README.md
e7713af
Update README.md
b0e357f
Update README.md
76e8517
update path to script files
25ff003
Merge branch 'azure_rmprovider' of https://github.com/heywoodj/Apollo…
726d104
Update README.md
2ee172a
Update README.md
e08dd7a
Create README.md
7baefff
Add images folder
7cea6d7
Update README.md
4be2738
Update README.md
81c8910
Update README.md
f484bd4
Delete README.md
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* Configure auth 2 resource manager authentication. This requires an aplication to be set up in Azure, see | ||
https://www.terraform.io/docs/providers/azurerm/index.html fo details. */ | ||
|
||
provider "azurerm" { | ||
subscription_id = "${var.subscription_id}" | ||
client_id = "${var.client_id}" | ||
client_secret = "${var.client_secret}" | ||
tenant_id = "${var.tenant_id}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
variable "subscription_id" { | ||
description = "The Azure subscrition identifier (guid)." | ||
} | ||
|
||
variable "client_id" { | ||
description = "The oAuth 2 client id. " | ||
} | ||
|
||
variable "client_secret" { | ||
description = "The oAuth 2 client secret." | ||
} | ||
|
||
variable "tenant_id" { | ||
description = "The oAuth 2 tenant id." | ||
} | ||
|
||
variable "location" { | ||
description = "The deployment azure data centre location." | ||
} | ||
|
||
variable "vn_cidr_block" { | ||
description = "Cidr block for the VN." | ||
} | ||
|
||
variable "subnet_cidr_block" { | ||
description = "CIDR for private subnet" | ||
} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably want to have some defaults for
location
,vn_cidr_block
andsubnet_cidr_block