Skip to content

Commit 80a8c7c

Browse files
Support ARN format. (#69)
* Support ARN format. * Support ARN format.
1 parent 24d9655 commit 80a8c7c

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

examples/complete/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module "geff" {
66
env = var.env
77

88
# AWS
9+
arn_format = var.arn_format
910
aws_cloudwatch_metric_namespace = var.aws_cloudwatch_metric_namespace
1011
aws_region = var.aws_region
1112

examples/complete/variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ variable "sentry_driver_dsn" {
9797
default = ""
9898
}
9999

100+
variable "arn_format" {
101+
type = string
102+
description = "ARN format could be aws or aws-us-gov. Defaults to non-gov."
103+
default = "aws"
104+
}
105+
100106
data "aws_caller_identity" "current" {}
101107

102108
locals {

storage_integration.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module "storage_integration" {
66
env = var.env
77

88
# AWS
9+
arn_format = var.arn_format
910
data_bucket_arns = var.data_bucket_arns
1011
snowflake_integration_user_roles = var.snowflake_integration_user_roles
1112

0 commit comments

Comments
 (0)