cloudstrap-azure 0.7.1.pre → 0.7.3.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/command/internal/cloudstrap-azure.deploy +23 -1
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdb4eea4767aea55122245e9fc02c98e40263e1a6f928fffa19bcfc2c3141753
|
|
4
|
+
data.tar.gz: 8737872073cf424b306a10d5bf6f63877cb9bd154442df8e6ac8279c32863008
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec41dfcf41b2a77a05214efaa532b4cf80e020e2fa6413768856b7be1cfdd16de8dc145a60d21fc0307940bc0df7bfa916a21a133174b4d0666d0be403229f21
|
|
7
|
+
data.tar.gz: 1e8de685f44ebad580fe51702e63956535122612ce6c26c2ae35fcf37ad1265732c8db86180392b97e1e50aa996bfe868b961ab780cec446cb7f15e7cdc2649e
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
|
@@ -516,7 +516,7 @@ DownloadKubeConfig = ->(container_service, filename) {
|
|
|
516
516
|
Purge = -> {
|
|
517
517
|
if resource_group = FindResourceGroup.(Chamber.env.identifier)
|
|
518
518
|
WhileSpinning.('Purge Resources') {
|
|
519
|
-
AzureAPI::
|
|
519
|
+
AzureAPI::Resources::ResourceGroups.delete(resource_group.name)}
|
|
520
520
|
end
|
|
521
521
|
if application = FindApplication.(Chamber.env.identifier)
|
|
522
522
|
if service_principal = FindServicePrincipal.(application)
|
|
@@ -527,6 +527,28 @@ Purge = -> {
|
|
|
527
527
|
AzureAPI::GraphRbac::Applications.delete(application.object_id)}
|
|
528
528
|
end}
|
|
529
529
|
|
|
530
|
+
|
|
531
|
+
#################
|
|
532
|
+
# Sanity Checks #
|
|
533
|
+
#################
|
|
534
|
+
|
|
535
|
+
if Time.parse(Chamber.env.credential_end_date) < Time.now
|
|
536
|
+
STDERR.puts Pastel.new.red.bold("Bad End Date for Credentials")
|
|
537
|
+
|
|
538
|
+
STDERR.puts(
|
|
539
|
+
Pastel.new.red("
|
|
540
|
+
Credentials were configured to expire at #{Chamber.env.credential_end_date}
|
|
541
|
+
|
|
542
|
+
This time has passed.
|
|
543
|
+
|
|
544
|
+
Please choose a new credential end date during configuration:
|
|
545
|
+
"))
|
|
546
|
+
|
|
547
|
+
STDERR.puts Pastel.new.bold("cloudstrap-azure environment -- cloudstrap-azure configure\n")
|
|
548
|
+
|
|
549
|
+
abort
|
|
550
|
+
end
|
|
551
|
+
|
|
530
552
|
################
|
|
531
553
|
# Main Program #
|
|
532
554
|
################
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudstrap-azure
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3.pre
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Olstrom
|
|
@@ -34,7 +34,7 @@ cert_chain:
|
|
|
34
34
|
EIKh6yDoB+oCRuiTV0uw/lKE2PtbONhJb7uN1qhZqla/iBpmUjiEu8+skI+ygv9n
|
|
35
35
|
7Krw8FJrV3+VRCiZTPKHeshAfL9yeIZh
|
|
36
36
|
-----END CERTIFICATE-----
|
|
37
|
-
date: 2018-
|
|
37
|
+
date: 2018-06-04 00:00:00.000000000 Z
|
|
38
38
|
dependencies:
|
|
39
39
|
- !ruby/object:Gem::Dependency
|
|
40
40
|
name: azure_graph_rbac
|
metadata.gz.sig
CHANGED
|
Binary file
|