Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Plural
platform
terraform-azurerm-aks
Commits
f4bdf1b8
Commit
f4bdf1b8
authored
4 years ago
by
michaelguarino
Browse files
Options
Download
Email Patches
Plain Diff
drop aks suffix
parent
1e7d9a35
plural
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
main.tf
+1
-1
main.tf
variables.tf
+5
-0
variables.tf
with
6 additions
and
1 deletion
+6
-1
main.tf
+
1
-
1
View file @
f4bdf1b8
...
...
@@ -8,7 +8,7 @@ module "ssh-key" {
}
resource
"azurerm_kubernetes_cluster"
"main"
{
name
=
"
${
var
.
prefix
}
-aks"
name
=
var
.
cluster_name
kubernetes_version
=
var
.
kubernetes_version
location
=
data
.
azurerm_resource_group
.
main
.
location
resource_group_name
=
data
.
azurerm_resource_group
.
main
.
name
...
...
This diff is collapsed.
Click to expand it.
variables.tf
+
5
-
0
View file @
f4bdf1b8
...
...
@@ -8,6 +8,11 @@ variable "prefix" {
type
=
string
}
variable
"cluster_name"
{
description
=
"the name to give the AKS cluster resource"
type
=
string
}
variable
"client_id"
{
description
=
"(Optional) The Client ID (appId) for the Service Principal used for the AKS deployment"
type
=
string
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help