Skip to content

Commit dd84782

Browse files
Revert "add ClusterArn as Output. (#45)" (#46)
This reverts commit 215a0b1.
1 parent 215a0b1 commit dd84782

4 files changed

Lines changed: 0 additions & 25 deletions

File tree

stacker_blueprints/rds/aurora/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ def create_outputs(self):
330330
)
331331
t.add_output(Output("Port", Value=self.get_port()))
332332
t.add_output(Output("Cluster", Value=Ref(DBCLUSTER)))
333-
t.add_output(Output("ClusterArn", Value=GetAtt(DBCLUSTER, "Arn")))
334333
if self.should_create_internal_hostname():
335334
t.add_output(
336335
Output("DBCname", Value=Ref(DNS_RECORD))

tests/fixtures/blueprints/rds_aurora_base_cluster.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@
55
"Ref": "DBCluster"
66
}
77
},
8-
"ClusterArn": {
9-
"Value": {
10-
"Fn::GetAtt": [
11-
"DBCluster",
12-
"Arn"
13-
]
14-
}
15-
},
168
"MasterEndpoint": {
179
"Value": {
1810
"Fn::GetAtt": [

tests/fixtures/blueprints/rds_aurora_base_cluster_restore_snapshot.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@
55
"Ref": "DBCluster"
66
}
77
},
8-
"ClusterArn": {
9-
"Value": {
10-
"Fn::GetAtt": [
11-
"DBCluster",
12-
"Arn"
13-
]
14-
}
15-
},
168
"MasterEndpoint": {
179
"Value": {
1810
"Fn::GetAtt": [

tests/fixtures/blueprints/rds_aurora_mysql_cluster.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@
55
"Ref": "DBCluster"
66
}
77
},
8-
"ClusterArn": {
9-
"Value": {
10-
"Fn::GetAtt": [
11-
"DBCluster",
12-
"Arn"
13-
]
14-
}
15-
},
168
"MasterEndpoint": {
179
"Value": {
1810
"Fn::GetAtt": [

0 commit comments

Comments
 (0)