Skip to content

Commit cc55915

Browse files
committed
renaming profile_to_use ,security_groups_to_use,upgrading terraform version
1 parent 94d3f62 commit cc55915

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ variable "engine" {
6363
description = "Name of the cache engine to be used for this cache cluster. Valid values for this parameter are memcached or redis."
6464
}
6565

66-
variable "profile_to_use" {
66+
variable "profile" {
6767
description = "Getting values from ~/.aws/credentials"
6868
default = "default"
6969
}

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ terraform {
22
required_version = ">= 0.14"
33
required_providers {
44
aws = {
5-
version = "~> 3.29"
5+
version = "~> 3.63"
66
}
77
}
88
}
99

1010
provider "aws" {
1111
region = var.aws_region
12-
profile = var.profile_to_use
12+
profile = var.profile
1313
}

0 commit comments

Comments
 (0)