Edits per Code Review

This commit is contained in:
Tom Archer 2023-02-16 11:15:46 -08:00
parent 66edc2e080
commit def91ae46b
3 changed files with 6 additions and 2 deletions

View File

@ -1 +1,3 @@
output "api_management_service_name" {
value = azurerm_api_management.api.name
}

View File

@ -3,7 +3,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.0"
version = "~>3.0"
}
random = {
source = "hashicorp/random"

View File

@ -9,6 +9,7 @@ variable "resource_group_name_prefix" {
}
variable "publisher_email" {
default = "test@contoso.com"
description = "The email address of the owner of the service"
type = string
validation {
@ -18,6 +19,7 @@ variable "publisher_email" {
}
variable "publisher_name" {
default = "publisher"
description = "The name of the owner of the service"
type = string
validation {