Atha Kouroussis

Results 5 comments of Atha Kouroussis

@tomwganem this happened to us too. Are you using the xmlrpc endpoint for the provider? Or do you have a .softlayer file in your home dir (probably created by slcli)...

Hi @renier. Here is a sample config: ``` resource "softlayer_virtual_guest" "test" { hostname = "disk-test" domain = "dev.vurbia.net" datacenter = "wdc04" os_reference_code = "UBUNTU_16_64" cores = 1 memory = 1024...

@Evi1Pumpkin While a `removed` block is certainly useful to programmatically remove resources from the state, it wouldn't cover some use cases. For example, we have a number of `google_secret_manager_secret` resources...

@Evi1Pumpkin sure, consider this scenario: In project A, we define a Google secret manager secret: ``` resource "google_secret_manager_secret" "test_secret" { secret_id = "test-secret" replication { auto {} } } resource...

@janosdebugs as stated above, it's an oversimplified example, there are tens of instances of project A managing several sets of secrets each. The secret(s) would be deleted (in sets usually)...