Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eveld/azure_terraform_example
An example based on a tweet by @DarqueWarrior - https://twitter.com/DonovanBrown/status/1082674245187104768
https://github.com/eveld/azure_terraform_example
Last synced: about 23 hours ago
JSON representation
An example based on a tweet by @DarqueWarrior - https://twitter.com/DonovanBrown/status/1082674245187104768
- Host: GitHub
- URL: https://github.com/eveld/azure_terraform_example
- Owner: eveld
- Created: 2019-01-12T08:48:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-12T08:53:42.000Z (almost 6 years ago)
- Last Synced: 2024-11-05T11:36:17.535Z (about 2 months ago)
- Language: HCL
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
# Sign in to azure and set subscription.
az login
az account list
az account set --subscription="..."# Initialize terraform
terraform init# See which changes will be applied.
terraform plan# Apply the changes.
terraform apply
```