forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from terraform-providers/master
merge from origin
- Loading branch information
Showing
51 changed files
with
4,325 additions
and
470 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,6 @@ website/vendor | |
!command/test-fixtures/**/.terraform/ | ||
|
||
.env.sh | ||
|
||
# goenv version file | ||
.go-version |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package azure | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2018-04-01/network" | ||
) | ||
|
||
// The API requires InternalPublicIPAddress to be set when for a CreateOrUpdate | ||
// operation, but Get operations return the property as PublicIPAddress | ||
// so we need to go through and copy the value to the correct property. | ||
func FirewallFixIPConfiguration(input *[]network.AzureFirewallIPConfiguration) (*[]network.AzureFirewallIPConfiguration, error) { | ||
if input == nil { | ||
return nil, fmt.Errorf("`input` was nil") | ||
} | ||
|
||
results := make([]network.AzureFirewallIPConfiguration, 0) | ||
for _, config := range *input { | ||
if config.Subnet == nil || config.Subnet.ID == nil { | ||
return nil, fmt.Errorf("`config.Subnet.ID` was nil") | ||
} | ||
|
||
if config.PublicIPAddress == nil || config.PublicIPAddress.ID == nil { | ||
return nil, fmt.Errorf("`config.PublicIPAddress.ID` was nil") | ||
} | ||
|
||
result := network.AzureFirewallIPConfiguration{ | ||
Name: config.Name, | ||
AzureFirewallIPConfigurationPropertiesFormat: &network.AzureFirewallIPConfigurationPropertiesFormat{ | ||
Subnet: &network.SubResource{ | ||
ID: config.Subnet.ID, | ||
}, | ||
InternalPublicIPAddress: &network.SubResource{ | ||
ID: config.PublicIPAddress.ID, | ||
}, | ||
}, | ||
} | ||
results = append(results, result) | ||
} | ||
|
||
return &results, nil | ||
} |
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
azurerm/import_arm_virtual_network_gateway_connection_test.go
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.