Skip to content

Commit

Permalink
Merge pull request #331 from andyaviles121/aistudiobasic
Browse files Browse the repository at this point in the history
Basic AI Studio resource creation updates
  • Loading branch information
stemaMSFT committed Jul 10, 2024
2 parents b355126 + 29e0406 commit 62f7728
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
9 changes: 5 additions & 4 deletions quickstart/101-ai-studio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ This configuration describes the minimal set of resources you require to get sta

| Name | Description | Default |
| ---- | ----------- | ------- |
| names | Prefix name for dependent resources. | myfirst |
| location | The Azure region used for deployments | East US |
| sku | The SKU for AI Services resources | S0
| `resource_group_name_prefix` | Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription. | rg |
| `resource_group_location` | Location of the resource group. | eastus |
| `prefix` | This variable is used to name the hub, project, and dependent resources. | ai |
| `sku` | The SKU for AI Services resources | S0

## Usage

Expand All @@ -32,7 +33,7 @@ terraform init

az login

terraform plan -var names="tftemplate" -out demo.tfplan
terraform plan -out demo.tfplan

terraform apply "demo.tfplan"
```
Expand Down
8 changes: 2 additions & 6 deletions quickstart/101-ai-studio/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
output "ResourceGroup" {
output "resource_group_name" {
value = azurerm_resource_group.rg.id
}

output "HubId" {
value = azapi_resource.hub.id
}

output "ProjectId" {
output "workspace_name" {
value = azapi_resource.project.id
}

Expand Down

0 comments on commit 62f7728

Please sign in to comment.