Skip to content

Commit b5b5de7

Browse files
Update variables.tf with authorization endpoint
1 parent 3044dfc commit b5b5de7

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

tofu/config/dev-co/variables.tf

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ variable "image_tag" {
1515
default = "latest"
1616
}
1717

18+
variable "oidc_discovery_endpoint" {
19+
type = string
20+
description = "MyColorado OIDC discovery endpoint URL."
21+
default = "https://auth.pingone.com/e8e64475-39e1-43de-964b-3bc2e835a2f5/as/.well-known/openid-configuration"
22+
}
23+
24+
variable "oidc_authorization_endpoint" {
25+
type = string
26+
description = "MyColorado OIDC authorization endpoint URL."
27+
default = "https://auth.pingone.com/e8e64475-39e1-43de-964b-3bc2e835a2f5/as/authorize"
28+
}
29+
1830
variable "private_subnets" {
1931
type = list(string)
2032
description = "List of private subnet CIDR blocks."
@@ -46,9 +58,3 @@ variable "vpc_cidr" {
4658
type = string
4759
description = "IPv4 CIDR block for the VPC."
4860
}
49-
50-
variable "oidc_discovery_endpoint" {
51-
type = string
52-
description = "MyColorado OIDC discovery endpoint URL."
53-
default = "https://auth.pingone.com/e8e64475-39e1-43de-964b-3bc2e835a2f5/as/.well-known/openid-configuration"
54-
}

0 commit comments

Comments
 (0)