Skip to content

Commit

Permalink
mv availability_zones and link
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Feb 13, 2026
1 parent b11c792 commit e1b5733
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 19 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions common/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ resource "aws_servicecatalog_provisioned_product" "this" {
tags = local.tags

timeouts {
create = var.timeout_create
update = var.timeout_update
delete = var.timeout_delete
create = var.timeout
update = var.timeout
delete = var.timeout
}

depends_on = [
Expand Down
18 changes: 3 additions & 15 deletions common/variables.product.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,22 +75,10 @@ variable "retrieve_stack_outputs" {
default = true
}

variable "timeout_create" {
description = "Timeout for provisioned product creation"
variable "timeout" {
description = "Timeout for provisioned product operations (create/update/delete)"
type = string
default = "60m"
}

variable "timeout_update" {
description = "Timeout for provisioned product updates"
type = string
default = "60m"
}

variable "timeout_delete" {
description = "Timeout for provisioned product deletion"
type = string
default = "60m"
default = "15m"
}

variable "vpc_name" {
Expand Down
1 change: 1 addition & 0 deletions ec2/availabilty_zones.tf
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.66.0"
version = ">= 5.0"
}
}
# required_version = ">= 0.13"
Expand Down

0 comments on commit e1b5733

Please sign in to comment.