Skip to content
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

New Resource: azurerm_data_lake_store #1219

Merged
merged 26 commits into from
May 20, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update data_lake_store.html.markdown
  • Loading branch information
katbyte authored May 20, 2018
commit 8d74125a7912f736ba727f3ede6b16c472748538
14 changes: 7 additions & 7 deletions website/docs/r/data_lake_store.html.markdown
Original file line number Diff line number Diff line change
@@ -15,27 +15,27 @@ Manage an Azure Data Lake Store.
```hcl
# Pay As You Go
resource "azurerm_resource_group" "test" {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we get the terraform in the example formatted to look nice please?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yup moved to 2 spaces

name = "test"
name = "test"
location = "northeurope"
}

resource "azurerm_data_lake_store" "consumption" {
name = "consumptiondatalake"
name = "consumptiondatalake"
resource_group_name = "${azurerm_resource_group.test.name}"
location = "northeurope"
location = "northeurope"
}

# Monthly Commitment Tier
resource "azurerm_resource_group" "test" {
name = "test"
name = "test"
location = "westeurope"
}

resource "azurerm_data_lake_store" "monthly" {
name = "monthlydatalake"
name = "monthlydatalake"
resource_group_name = "${azurerm_resource_group.test.name}"
location = "westeurope"
tier = "Commitment_1TB"
location = "westeurope"
tier = "Commitment_1TB"
}
```